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.
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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserPool.AdminCreateUserConfigPropertystatic final classAn 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 theSignUpoperation.Returns union: either
BooleanorIResolvable- 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 .
Returns union: either
IResolvableorCfnUserPool.InviteMessageTemplateProperty- See Also:
-
getUnusedAccountValidityDays
This parameter is no longer in use.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
AdminCreateUseragain, specifyingRESENDfor theMessageActionparameter.The default value for this parameter is 7.
- See Also:
-
builder
-