Class: Aws::AppStream::Types::UserStackAssociation

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 UserStackAssociation data as a hash:

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

Describes a user in the user pool and the associated stack.

Instance Attribute Summary collapse

Instance Attribute Details

#authentication_typeString

The authentication type for the user.

Returns:

  • (String)


3173
3174
3175
3176
3177
3178
3179
# File 'lib/aws-sdk-appstream/types.rb', line 3173

class UserStackAssociation < Struct.new(
  :stack_name,
  :user_name,
  :authentication_type,
  :send_email_notification)
  include Aws::Structure
end

#send_email_notificationBoolean

Specifies whether a welcome email is sent to a user after the user is created in the user pool.

Returns:

  • (Boolean)


3173
3174
3175
3176
3177
3178
3179
# File 'lib/aws-sdk-appstream/types.rb', line 3173

class UserStackAssociation < Struct.new(
  :stack_name,
  :user_name,
  :authentication_type,
  :send_email_notification)
  include Aws::Structure
end

#stack_nameString

The name of the stack that is associated with the user.

Returns:

  • (String)


3173
3174
3175
3176
3177
3178
3179
# File 'lib/aws-sdk-appstream/types.rb', line 3173

class UserStackAssociation < Struct.new(
  :stack_name,
  :user_name,
  :authentication_type,
  :send_email_notification)
  include Aws::Structure
end

#user_nameString

The email address of the user who is associated with the stack.

Returns:

  • (String)


3173
3174
3175
3176
3177
3178
3179
# File 'lib/aws-sdk-appstream/types.rb', line 3173

class UserStackAssociation < Struct.new(
  :stack_name,
  :user_name,
  :authentication_type,
  :send_email_notification)
  include Aws::Structure
end