Interface CfnUserMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.940Z")
@Stability(Stable)
public interface CfnUserMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnUserPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.appstream.*;
CfnUserMixinProps cfnUserMixinProps = CfnUserMixinProps.builder()
.authenticationType("authenticationType")
.firstName("firstName")
.lastName("lastName")
.messageAction("messageAction")
.userName("userName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserMixinPropsstatic final classAn implementation forCfnUserMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnUserMixinProps.Builderbuilder()default StringThe authentication type for the user.default StringThe first name, or given name, of the user.default StringThe last name, or surname, of the user.default StringThe action to take for the welcome email that is sent to a user after the user is created in the user pool.default StringThe email address of the user.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthenticationType
The authentication type for the user.You must specify USERPOOL.
- See Also:
-
getFirstName
The first name, or given name, of the user.- See Also:
-
getLastName
The last name, or surname, of the user.- See Also:
-
getMessageAction
The action to take for the welcome email that is sent to a user after the user is created in the user pool.If you specify SUPPRESS, no email is sent. If you specify RESEND, do not specify the first name or last name of the user. If the value is null, the email is sent.
The temporary password in the welcome email is valid for only 7 days. If users don’t set their passwords within 7 days, you must send them a new welcome email.
- See Also:
-
getUserName
The email address of the user.Users' email addresses are case-sensitive. During login, if they specify an email address that doesn't use the same capitalization as the email address specified when their user pool account was created, a "user does not exist" error message displays.
- See Also:
-
builder
- Returns:
- a
CfnUserMixinProps.BuilderofCfnUserMixinProps
-