Interface CfnStackUserAssociationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStackUserAssociationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.938Z")
@Stability(Stable)
public interface CfnStackUserAssociationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnStackUserAssociationPropsMixin.
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.*;
CfnStackUserAssociationMixinProps cfnStackUserAssociationMixinProps = CfnStackUserAssociationMixinProps.builder()
.authenticationType("authenticationType")
.sendEmailNotification(false)
.stackName("stackName")
.userName("userName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStackUserAssociationMixinPropsstatic final classAn implementation forCfnStackUserAssociationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe authentication type for the user who is associated with the stack.default ObjectSpecifies whether a welcome email is sent to a user after the user is created in the user pool.default StringThe name of the stack that is associated with the user.default StringThe email address of the user who is associated with the stack.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthenticationType
The authentication type for the user who is associated with the stack.You must specify USERPOOL.
- See Also:
-
getSendEmailNotification
Specifies whether a welcome email is sent to a user after the user is created in the user pool.Returns union: either
BooleanorIResolvable- See Also:
-
getStackName
The name of the stack that is associated with the user.- See Also:
-
getUserName
The email address of the user who is associated with the stack.Users' email addresses are case-sensitive.
- See Also:
-
builder
-