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();