Class: Aws::CognitoIdentityProvider::Types::AccountRecoverySettingType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AccountRecoverySettingType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass AccountRecoverySettingType data as a hash:
{
recovery_mechanisms: [
{
priority: 1, # required
name: "verified_email", # required, accepts verified_email, verified_phone_number, admin_only
},
],
}
The data type for `AccountRecoverySetting`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#recovery_mechanisms ⇒ Array<Types::RecoveryOptionType>
The list of `RecoveryOptionTypes`.
Instance Attribute Details
#recovery_mechanisms ⇒ Array<Types::RecoveryOptionType>
The list of `RecoveryOptionTypes`.
33 34 35 36 37 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 33 class AccountRecoverySettingType < Struct.new( :recovery_mechanisms) SENSITIVE = [] include Aws::Structure end |