Class: Aws::AppStream::Types::DeleteUserRequest

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

{
  user_name: "Username", # required
  authentication_type: "API", # required, accepts API, SAML, USERPOOL
}

Instance Attribute Summary collapse

Instance Attribute Details

#authentication_typeString

The authentication type for the user. You must specify USERPOOL.

Returns:

  • (String)


1112
1113
1114
1115
1116
# File 'lib/aws-sdk-appstream/types.rb', line 1112

class DeleteUserRequest < Struct.new(
  :user_name,
  :authentication_type)
  include Aws::Structure
end

#user_nameString

The email address of the user.

Returns:

  • (String)


1112
1113
1114
1115
1116
# File 'lib/aws-sdk-appstream/types.rb', line 1112

class DeleteUserRequest < Struct.new(
  :user_name,
  :authentication_type)
  include Aws::Structure
end