Class: Aws::AppStream::Types::UserStackAssociation
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::UserStackAssociation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appstream/types.rb
Overview
Describes a user in the user pool and the associated stack.
Constant Summary collapse
- SENSITIVE =
[:user_name]
Instance Attribute Summary collapse
-
#authentication_type ⇒ String
The authentication type for the user.
-
#send_email_notification ⇒ Boolean
Specifies whether a welcome email is sent to a user after the user is created in the user pool.
-
#stack_name ⇒ String
The name of the stack that is associated with the user.
-
#user_name ⇒ String
The email address of the user who is associated with the stack.
Instance Attribute Details
#authentication_type ⇒ String
The authentication type for the user.
5972 5973 5974 5975 5976 5977 5978 5979 |
# File 'lib/aws-sdk-appstream/types.rb', line 5972 class UserStackAssociation < Struct.new( :stack_name, :user_name, :authentication_type, :send_email_notification) SENSITIVE = [:user_name] include Aws::Structure end |
#send_email_notification ⇒ Boolean
Specifies whether a welcome email is sent to a user after the user is created in the user pool.
5972 5973 5974 5975 5976 5977 5978 5979 |
# File 'lib/aws-sdk-appstream/types.rb', line 5972 class UserStackAssociation < Struct.new( :stack_name, :user_name, :authentication_type, :send_email_notification) SENSITIVE = [:user_name] include Aws::Structure end |
#stack_name ⇒ String
The name of the stack that is associated with the user.
5972 5973 5974 5975 5976 5977 5978 5979 |
# File 'lib/aws-sdk-appstream/types.rb', line 5972 class UserStackAssociation < Struct.new( :stack_name, :user_name, :authentication_type, :send_email_notification) SENSITIVE = [:user_name] include Aws::Structure end |
#user_name ⇒ String
The email address of the user who is associated with the stack.
<note markdown=“1”> Users’ email addresses are case-sensitive.
</note>
5972 5973 5974 5975 5976 5977 5978 5979 |
# File 'lib/aws-sdk-appstream/types.rb', line 5972 class UserStackAssociation < Struct.new( :stack_name, :user_name, :authentication_type, :send_email_notification) SENSITIVE = [:user_name] include Aws::Structure end |