Class: Aws::CognitoIdentityProvider::Types::RecoveryOptionType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::RecoveryOptionType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
A map containing a priority as a key, and recovery method name as a value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The recovery method for a user.
-
#priority ⇒ Integer
A positive integer specifying priority of a method with 1 being the highest priority.
Instance Attribute Details
#name ⇒ String
The recovery method for a user.
7127 7128 7129 7130 7131 7132 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7127 class RecoveryOptionType < Struct.new( :priority, :name) SENSITIVE = [] include Aws::Structure end |
#priority ⇒ Integer
A positive integer specifying priority of a method with 1 being the highest priority.
7127 7128 7129 7130 7131 7132 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7127 class RecoveryOptionType < Struct.new( :priority, :name) SENSITIVE = [] include Aws::Structure end |