Class: Aws::AppStream::Types::CreateUserRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[:user_name, :first_name, :last_name]

Instance Attribute Summary collapse

Instance Attribute Details

#authentication_typeString

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

Returns:

  • (String)


2055
2056
2057
2058
2059
2060
2061
2062
2063
# File 'lib/aws-sdk-appstream/types.rb', line 2055

class CreateUserRequest < Struct.new(
  :user_name,
  :message_action,
  :first_name,
  :last_name,
  :authentication_type)
  SENSITIVE = [:user_name, :first_name, :last_name]
  include Aws::Structure
end

#first_nameString

The first name, or given name, of the user.

Returns:

  • (String)


2055
2056
2057
2058
2059
2060
2061
2062
2063
# File 'lib/aws-sdk-appstream/types.rb', line 2055

class CreateUserRequest < Struct.new(
  :user_name,
  :message_action,
  :first_name,
  :last_name,
  :authentication_type)
  SENSITIVE = [:user_name, :first_name, :last_name]
  include Aws::Structure
end

#last_nameString

The last name, or surname, of the user.

Returns:

  • (String)


2055
2056
2057
2058
2059
2060
2061
2062
2063
# File 'lib/aws-sdk-appstream/types.rb', line 2055

class CreateUserRequest < Struct.new(
  :user_name,
  :message_action,
  :first_name,
  :last_name,
  :authentication_type)
  SENSITIVE = [:user_name, :first_name, :last_name]
  include Aws::Structure
end

#message_actionString

The action to take for the welcome email that is sent to a user after the user is created in the user pool. If you specify SUPPRESS, no email is sent. If you specify RESEND, do not specify the first name or last name of the user. If the value is null, the email is sent.

<note markdown=“1”> The temporary password in the welcome email is valid for only 7 days. If users don’t set their passwords within 7 days, you must send them a new welcome email.

</note>

Returns:

  • (String)


2055
2056
2057
2058
2059
2060
2061
2062
2063
# File 'lib/aws-sdk-appstream/types.rb', line 2055

class CreateUserRequest < Struct.new(
  :user_name,
  :message_action,
  :first_name,
  :last_name,
  :authentication_type)
  SENSITIVE = [:user_name, :first_name, :last_name]
  include Aws::Structure
end

#user_nameString

The email address of the user.

<note markdown=“1”> 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.

</note>

Returns:

  • (String)


2055
2056
2057
2058
2059
2060
2061
2062
2063
# File 'lib/aws-sdk-appstream/types.rb', line 2055

class CreateUserRequest < Struct.new(
  :user_name,
  :message_action,
  :first_name,
  :last_name,
  :authentication_type)
  SENSITIVE = [:user_name, :first_name, :last_name]
  include Aws::Structure
end