Interface CfnUserPool.SignInPolicyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserPool.SignInPolicyProperty.Jsii$Proxy
Enclosing class:
CfnUserPool

@Stability(Stable) public static interface CfnUserPool.SignInPolicyProperty extends software.amazon.jsii.JsiiSerializable
The policy for allowed types of authentication in a user pool.

To activate this setting, your user pool must be in the Essentials tier or higher.

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.*;
 SignInPolicyProperty signInPolicyProperty = SignInPolicyProperty.builder()
         .allowedFirstAuthFactors(List.of("allowedFirstAuthFactors"))
         .build();
 

See Also: