@Stability(value=Stable)
public static interface CfnUserPool.UsernameConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
UsernameConfigurationProperty usernameConfigurationProperty = UsernameConfigurationProperty.builder()
.caseSensitive(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnUserPool.UsernameConfigurationProperty.Builder
A builder for
CfnUserPool.UsernameConfigurationProperty |
static class |
CfnUserPool.UsernameConfigurationProperty.Jsii$Proxy
An implementation for
CfnUserPool.UsernameConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnUserPool.UsernameConfigurationProperty.Builder |
builder() |
default Object |
getCaseSensitive()
Specifies whether user name case sensitivity will be applied for all users in the user pool through Amazon Cognito APIs.
|
@Stability(value=Stable) @Nullable default Object getCaseSensitive()
Valid values include:
True , users must sign in using the exact capitalization of their given username, such as “UserName”. This is the default value.False , users can sign in using either "username" or "Username". This option also enables both preferred_username and email alias to be case insensitive, in addition to the username attribute.@Stability(value=Stable) static CfnUserPool.UsernameConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.