Class: Aws::AppStream::Types::EnableUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::EnableUserRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appstream/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:user_name]
Instance Attribute Summary collapse
-
#authentication_type ⇒ String
The authentication type for the user.
-
#user_name ⇒ String
The email address of the user.
Instance Attribute Details
#authentication_type ⇒ String
The authentication type for the user. You must specify USERPOOL.
3138 3139 3140 3141 3142 3143 |
# File 'lib/aws-sdk-appstream/types.rb', line 3138 class EnableUserRequest < Struct.new( :user_name, :authentication_type) SENSITIVE = [:user_name] include Aws::Structure end |
#user_name ⇒ String
The email address of the user.
<note markdown=“1”> Users’ email addresses are case-sensitive. During login, if they specify an email address that doesn’t use the same capitalization as the email address specified when their user pool account was created, a “user does not exist” error message displays.
</note>
3138 3139 3140 3141 3142 3143 |
# File 'lib/aws-sdk-appstream/types.rb', line 3138 class EnableUserRequest < Struct.new( :user_name, :authentication_type) SENSITIVE = [:user_name] include Aws::Structure end |