Class: Aws::CognitoIdentityProvider::Types::AccountRecoverySettingType
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CognitoIdentityProvider::Types::AccountRecoverySettingType
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cognitoidentityprovider/types.rb
 
Overview
The settings for user message delivery in forgot-password operations. Contains preference for email or SMS message delivery of password reset codes, or for admin-only password reset.
This data type is a request and response parameter of
- CreateUserPool][1
 - 
and [UpdateUserPool], and a response parameter
 
of [DescribeUserPool].
[1]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_CreateUserPool.html [2]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_UpdateUserPool.html [3]: docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_DescribeUserPool.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #recovery_mechanisms  ⇒ Array<Types::RecoveryOptionType> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of options and priorities for user message delivery in forgot-password operations.
 
Instance Attribute Details
#recovery_mechanisms ⇒ Array<Types::RecoveryOptionType>
The list of options and priorities for user message delivery in forgot-password operations. Sets or displays user pool preferences for email or SMS message priority, whether users should fall back to a second delivery method, and whether passwords should only be reset by administrators.
      37 38 39 40 41  | 
    
      # File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 37 class AccountRecoverySettingType < Struct.new( :recovery_mechanisms) SENSITIVE = [] include Aws::Structure end  |