Class: Aws::CognitoIdentityProvider::Types::GetUserResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoIdentityProvider::Types::GetUserResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cognitoidentityprovider/types.rb
 
Overview
Represents the response from the server from the request to get information about the user.
Constant Summary collapse
- SENSITIVE =
 [:username]
Instance Attribute Summary collapse
- 
  
    
      #mfa_options  ⇒ Array<Types::MFAOptionType> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
*This response parameter is no longer supported.* It provides information only about SMS MFA configurations.
 - 
  
    
      #preferred_mfa_setting  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The user’s preferred MFA setting.
 - 
  
    
      #user_attributes  ⇒ Array<Types::AttributeType> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of name-value pairs representing user attributes.
 - 
  
    
      #user_mfa_setting_list  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The MFA options that are activated for the user.
 - 
  
    
      #username  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The username of the user that you requested.
 
Instance Attribute Details
#mfa_options ⇒ Array<Types::MFAOptionType>
*This response parameter is no longer supported.* It provides information only about SMS MFA configurations. It doesn’t provide information about time-based one-time password (TOTP) software token MFA configurations. To look up information about either type of MFA configuration, use UserMFASettingList instead.
      6544 6545 6546 6547 6548 6549 6550 6551 6552  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6544 class GetUserResponse < Struct.new( :username, :user_attributes, :mfa_options, :preferred_mfa_setting, :user_mfa_setting_list) SENSITIVE = [:username] include Aws::Structure end  | 
  
#preferred_mfa_setting ⇒ String
The user’s preferred MFA setting.
      6544 6545 6546 6547 6548 6549 6550 6551 6552  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6544 class GetUserResponse < Struct.new( :username, :user_attributes, :mfa_options, :preferred_mfa_setting, :user_mfa_setting_list) SENSITIVE = [:username] include Aws::Structure end  | 
  
#user_attributes ⇒ Array<Types::AttributeType>
An array of name-value pairs representing user attributes.
For custom attributes, you must prepend the ‘custom:` prefix to the attribute name.
      6544 6545 6546 6547 6548 6549 6550 6551 6552  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6544 class GetUserResponse < Struct.new( :username, :user_attributes, :mfa_options, :preferred_mfa_setting, :user_mfa_setting_list) SENSITIVE = [:username] include Aws::Structure end  | 
  
#user_mfa_setting_list ⇒ Array<String>
The MFA options that are activated for the user. The possible values in this list are ‘SMS_MFA`, `EMAIL_OTP`, and `SOFTWARE_TOKEN_MFA`.
      6544 6545 6546 6547 6548 6549 6550 6551 6552  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6544 class GetUserResponse < Struct.new( :username, :user_attributes, :mfa_options, :preferred_mfa_setting, :user_mfa_setting_list) SENSITIVE = [:username] include Aws::Structure end  | 
  
#username ⇒ String
The username of the user that you requested.
      6544 6545 6546 6547 6548 6549 6550 6551 6552  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6544 class GetUserResponse < Struct.new( :username, :user_attributes, :mfa_options, :preferred_mfa_setting, :user_mfa_setting_list) SENSITIVE = [:username] include Aws::Structure end  |