Class: Aws::CognitoIdentityProvider::Types::UserType

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

Overview

A user profile in a Amazon Cognito user pool.

Constant Summary collapse

SENSITIVE =
[:username]

Instance Attribute Summary collapse

Instance Attribute Details

#attributesArray<Types::AttributeType>

A container with information about the user type attributes.

Returns:



10622
10623
10624
10625
10626
10627
10628
10629
10630
10631
10632
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10622

class UserType < Struct.new(
  :username,
  :attributes,
  :user_create_date,
  :user_last_modified_date,
  :enabled,
  :user_status,
  :mfa_options)
  SENSITIVE = [:username]
  include Aws::Structure
end

#enabledBoolean

Specifies whether the user is enabled.

Returns:

  • (Boolean)


10622
10623
10624
10625
10626
10627
10628
10629
10630
10631
10632
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10622

class UserType < Struct.new(
  :username,
  :attributes,
  :user_create_date,
  :user_last_modified_date,
  :enabled,
  :user_status,
  :mfa_options)
  SENSITIVE = [:username]
  include Aws::Structure
end

#mfa_optionsArray<Types::MFAOptionType>

The MFA options for the user.

Returns:



10622
10623
10624
10625
10626
10627
10628
10629
10630
10631
10632
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10622

class UserType < Struct.new(
  :username,
  :attributes,
  :user_create_date,
  :user_last_modified_date,
  :enabled,
  :user_status,
  :mfa_options)
  SENSITIVE = [:username]
  include Aws::Structure
end

#user_create_dateTime

The creation date of the user.

Returns:

  • (Time)


10622
10623
10624
10625
10626
10627
10628
10629
10630
10631
10632
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10622

class UserType < Struct.new(
  :username,
  :attributes,
  :user_create_date,
  :user_last_modified_date,
  :enabled,
  :user_status,
  :mfa_options)
  SENSITIVE = [:username]
  include Aws::Structure
end

#user_last_modified_dateTime

The date and time, in [ISO 8601] format, when the item was modified.

[1]: www.iso.org/iso-8601-date-and-time-format.html

Returns:

  • (Time)


10622
10623
10624
10625
10626
10627
10628
10629
10630
10631
10632
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10622

class UserType < Struct.new(
  :username,
  :attributes,
  :user_create_date,
  :user_last_modified_date,
  :enabled,
  :user_status,
  :mfa_options)
  SENSITIVE = [:username]
  include Aws::Structure
end

#user_statusString

The user status. This can be one of the following:

  • UNCONFIRMED - User has been created but not confirmed.

  • CONFIRMED - User has been confirmed.

  • EXTERNAL_PROVIDER - User signed in with a third-party IdP.

  • UNKNOWN - User status isn’t known.

  • RESET_REQUIRED - User is confirmed, but the user must request a code and reset their password before they can sign in.

  • FORCE_CHANGE_PASSWORD - The user is confirmed and the user can sign in using a temporary password, but on first sign-in, the user must change their password to a new value before doing anything else.

Returns:

  • (String)


10622
10623
10624
10625
10626
10627
10628
10629
10630
10631
10632
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10622

class UserType < Struct.new(
  :username,
  :attributes,
  :user_create_date,
  :user_last_modified_date,
  :enabled,
  :user_status,
  :mfa_options)
  SENSITIVE = [:username]
  include Aws::Structure
end

#usernameString

The user name of the user you want to describe.

Returns:

  • (String)


10622
10623
10624
10625
10626
10627
10628
10629
10630
10631
10632
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 10622

class UserType < Struct.new(
  :username,
  :attributes,
  :user_create_date,
  :user_last_modified_date,
  :enabled,
  :user_status,
  :mfa_options)
  SENSITIVE = [:username]
  include Aws::Structure
end