Class: Aws::AppStream::Types::EnableUserRequest

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 EnableUserRequest 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)


1740
1741
1742
1743
1744
# File 'lib/aws-sdk-appstream/types.rb', line 1740

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

#user_nameString

The email address of the user.

Returns:

  • (String)


1740
1741
1742
1743
1744
# File 'lib/aws-sdk-appstream/types.rb', line 1740

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