Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Documentation
data UsernameConfigurationType Source #
The username configuration type.
See: newUsernameConfigurationType
smart constructor.
UsernameConfigurationType' | |
|
Instances
Eq UsernameConfigurationType Source # | |
Read UsernameConfigurationType Source # | |
Show UsernameConfigurationType Source # | |
Generic UsernameConfigurationType Source # | |
NFData UsernameConfigurationType Source # | |
Hashable UsernameConfigurationType Source # | |
ToJSON UsernameConfigurationType Source # | |
FromJSON UsernameConfigurationType Source # | |
type Rep UsernameConfigurationType Source # | |
Defined in Amazonka.CognitoIdentityProvider.Types.UsernameConfigurationType type Rep UsernameConfigurationType = D1 ('MetaData "UsernameConfigurationType" "Amazonka.CognitoIdentityProvider.Types.UsernameConfigurationType" "libZSservicesZSamazonka-cognito-idpZSamazonka-cognito-idp" 'False) (C1 ('MetaCons "UsernameConfigurationType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "caseSensitive") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool))) |
newUsernameConfigurationType Source #
Create a value of UsernameConfigurationType
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:caseSensitive:UsernameConfigurationType'
, usernameConfigurationType_caseSensitive
- Specifies whether username case sensitivity will be applied for all
users in the user pool through Cognito APIs.
Valid values include:
True
: Enables case sensitivity for all username input. When this option is set toTrue
, users must sign in using the exact capitalization of their given username. For example, “UserName”. This is the default value.False
: Enables case insensitivity for all username input. For example, when this option is set toFalse
, users will be able to sign in using either "username" or "Username". This option also enables bothpreferred_username
andemail
alias to be case insensitive, in addition to theusername
attribute.
usernameConfigurationType_caseSensitive :: Lens' UsernameConfigurationType Bool Source #
Specifies whether username case sensitivity will be applied for all users in the user pool through Cognito APIs.
Valid values include:
True
: Enables case sensitivity for all username input. When this option is set toTrue
, users must sign in using the exact capitalization of their given username. For example, “UserName”. This is the default value.False
: Enables case insensitivity for all username input. For example, when this option is set toFalse
, users will be able to sign in using either "username" or "Username". This option also enables bothpreferred_username
andemail
alias to be case insensitive, in addition to theusername
attribute.