Class: Aws::CognitoIdentityProvider::Types::GetUserAuthFactorsResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoIdentityProvider::Types::GetUserAuthFactorsResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cognitoidentityprovider/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 [:username]
Instance Attribute Summary collapse
- 
  
    
      #configured_user_auth_factors  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The authentication types that are available to the user with ‘USER_AUTH` sign-in.
 - 
  
    
      #preferred_mfa_setting  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The user’s preferred MFA setting.
 - 
  
    
      #user_mfa_setting_list  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The MFA options that are activated for the user.
 - 
  
    
      #username  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The username of the currently sign-in user.
 
Instance Attribute Details
#configured_user_auth_factors ⇒ Array<String>
The authentication types that are available to the user with ‘USER_AUTH` sign-in.
      6424 6425 6426 6427 6428 6429 6430 6431  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6424 class GetUserAuthFactorsResponse < Struct.new( :username, :preferred_mfa_setting, :user_mfa_setting_list, :configured_user_auth_factors) SENSITIVE = [:username] include Aws::Structure end  | 
  
#preferred_mfa_setting ⇒ String
The user’s preferred MFA setting.
      6424 6425 6426 6427 6428 6429 6430 6431  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6424 class GetUserAuthFactorsResponse < Struct.new( :username, :preferred_mfa_setting, :user_mfa_setting_list, :configured_user_auth_factors) 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`.
      6424 6425 6426 6427 6428 6429 6430 6431  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6424 class GetUserAuthFactorsResponse < Struct.new( :username, :preferred_mfa_setting, :user_mfa_setting_list, :configured_user_auth_factors) SENSITIVE = [:username] include Aws::Structure end  | 
  
#username ⇒ String
The username of the currently sign-in user.
      6424 6425 6426 6427 6428 6429 6430 6431  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 6424 class GetUserAuthFactorsResponse < Struct.new( :username, :preferred_mfa_setting, :user_mfa_setting_list, :configured_user_auth_factors) SENSITIVE = [:username] include Aws::Structure end  |