Class: Aws::AppStream::Types::DeleteUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::DeleteUserRequest
- 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.
2207 2208 2209 2210 2211 2212 |
# File 'lib/aws-sdk-appstream/types.rb', line 2207 class DeleteUserRequest < 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>
2207 2208 2209 2210 2211 2212 |
# File 'lib/aws-sdk-appstream/types.rb', line 2207 class DeleteUserRequest < Struct.new( :user_name, :authentication_type) SENSITIVE = [:user_name] include Aws::Structure end |