Interface CfnUserPool.RecoveryOptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserPool.RecoveryOptionProperty.Jsii$Proxy
- Enclosing class:
- CfnUserPool
@Stability(Stable)
public static interface CfnUserPool.RecoveryOptionProperty
extends software.amazon.jsii.JsiiSerializable
A map containing a priority as a key, and recovery method name as a value.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.cognito.*; RecoveryOptionProperty recoveryOptionProperty = RecoveryOptionProperty.builder() .name("name") .priority(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUserPool.RecoveryOptionProperty
static final class
An implementation forCfnUserPool.RecoveryOptionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
Specifies the recovery method for a user. -
getPriority
A positive integer specifying priority of a method with 1 being the highest priority. -
builder
-