Class: Aws::AppStream::Types::BatchDisassociateUserStackRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appstream/types.rb

Overview

Note:

When making an API call, you may pass BatchDisassociateUserStackRequest data as a hash:

{
  user_stack_associations: [ # required
    {
      stack_name: "String", # required
      user_name: "Username", # required
      authentication_type: "API", # required, accepts API, SAML, USERPOOL
      send_email_notification: false,
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#user_stack_associationsArray<Types::UserStackAssociation>

The list of UserStackAssociation objects.

Returns:



197
198
199
200
# File 'lib/aws-sdk-appstream/types.rb', line 197

class BatchDisassociateUserStackRequest < Struct.new(
  :user_stack_associations)
  include Aws::Structure
end