Class: Aws::AppStream::Types::DisableUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::DisableUserRequest
- 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.
3112 3113 3114 3115 3116 3117 |
# File 'lib/aws-sdk-appstream/types.rb', line 3112 class DisableUserRequest < 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.
</note>
3112 3113 3114 3115 3116 3117 |
# File 'lib/aws-sdk-appstream/types.rb', line 3112 class DisableUserRequest < Struct.new( :user_name, :authentication_type) SENSITIVE = [:user_name] include Aws::Structure end |