SetSMBGuestPasswordInput
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-storage-gateway/refs/heads/main/json-schema/amazon-storage-gateway-set-smb-guest-password-input-schema.json", "title": "SetSMBGuestPasswordInput", "description": "SetSMBGuestPasswordInput", "type": "object", "properties": { "GatewayARN": { "allOf": [ { "$ref": "#/components/schemas/GatewayARN" }, { "description": "The Amazon Resource Name (ARN) of the S3 File Gateway the SMB file share is associated with." } ] }, "Password": { "allOf": [ { "$ref": "#/components/schemas/SMBGuestPassword" }, { "description": "The password that you want to set for your SMB server." } ] } }, "required": [ "GatewayARN", "Password" ] }