Interface CfnUserPool.AdminCreateUserConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserPool.AdminCreateUserConfigProperty.Jsii$Proxy
- Enclosing class:
CfnUserPool
Contains settings for allowing user sign-up, customizing invitation messages to new users, and the amount of time before temporary passwords expire.
This data type is a request and response parameter of CreateUserPool and UpdateUserPool , and a response parameter of DescribeUserPool .
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.*; AdminCreateUserConfigProperty adminCreateUserConfigProperty = AdminCreateUserConfigProperty.builder() .allowAdminCreateUserOnly(false) .inviteMessageTemplate(InviteMessageTemplateProperty.builder() .emailMessage("emailMessage") .emailSubject("emailSubject") .smsMessage("smsMessage") .build()) .unusedAccountValidityDays(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUserPool.AdminCreateUserConfigProperty
static final class
An implementation forCfnUserPool.AdminCreateUserConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowAdminCreateUserOnly
The setting for allowing self-service sign-up.When
true
, only administrators can create new user profiles. Whenfalse
, users can register themselves and create a new user profile with the SignUp operation.- See Also:
-
getInviteMessageTemplate
The template for the welcome message to new users.This template must include the
{####}
temporary password placeholder if you are creating users with passwords. If your users don't have passwords, you can omit the placeholder.See also Customizing User Invitation Messages .
- See Also:
-
getUnusedAccountValidityDays
This parameter is no longer in use.Configure the duration of temporary passwords with the
TemporaryPasswordValidityDays
parameter of PasswordPolicyType . For older user pools that have aUnusedAccountValidityDays
configuration, that value is effective until you set a value forTemporaryPasswordValidityDays
.The password expiration limit in days for administrator-created users. When this time expires, the user can't sign in with their temporary password. To reset the account after that time limit, you must call
AdminCreateUser
again, specifyingRESEND
for theMessageAction
parameter.The default value for this parameter is 7.
- See Also:
-
builder
-