SetSMBGuestPasswordInput

SetSMBGuestPasswordInput

BackupFile StorageGatewayHybrid CloudStorage

Properties

Name Type Description
GatewayARN object
Password object
View JSON Schema on GitHub

JSON Schema

amazon-storage-gateway-set-smb-guest-password-input-schema.json Raw ↑
{
  "$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"
  ]
}