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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:user_name]

Instance Attribute Summary collapse

Instance Attribute Details

#authentication_typeString

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

Returns:

  • (String)


3138
3139
3140
3141
3142
3143
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 3138

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

#user_nameString

The email address of the user.

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.

Returns:

  • (String)


3138
3139
3140
3141
3142
3143
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 3138

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