Interface CfnUserPool.DeviceConfigurationProperty

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

@Stability(Stable) public static interface CfnUserPool.DeviceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The device-remembering configuration for a user pool.

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.*;
 DeviceConfigurationProperty deviceConfigurationProperty = DeviceConfigurationProperty.builder()
         .challengeRequiredOnNewDevice(false)
         .deviceOnlyRememberedOnUserPrompt(false)
         .build();
 

See Also: