@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.651Z") @Stability(value=Stable) public interface CfnStackUserAssociationProps extends software.amazon.jsii.JsiiSerializable
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.appstream.*;
CfnStackUserAssociationProps cfnStackUserAssociationProps = CfnStackUserAssociationProps.builder()
.authenticationType("authenticationType")
.stackName("stackName")
.userName("userName")
// the properties below are optional
.sendEmailNotification(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStackUserAssociationProps.Builder
A builder for
CfnStackUserAssociationProps |
static class |
CfnStackUserAssociationProps.Jsii$Proxy
An implementation for
CfnStackUserAssociationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnStackUserAssociationProps.Builder |
builder() |
String |
getAuthenticationType()
The authentication type for the user who is associated with the stack.
|
default Object |
getSendEmailNotification()
Specifies whether a welcome email is sent to a user after the user is created in the user pool.
|
String |
getStackName()
The name of the stack that is associated with the user.
|
String |
getUserName()
The email address of the user who is associated with the stack.
|
@Stability(value=Stable) @NotNull String getAuthenticationType()
You must specify USERPOOL.
@Stability(value=Stable) @NotNull String getStackName()
@Stability(value=Stable) @NotNull String getUserName()
Users' email addresses are case-sensitive.
@Stability(value=Stable) @Nullable default Object getSendEmailNotification()
@Stability(value=Stable) static CfnStackUserAssociationProps.Builder builder()
Copyright © 2022. All rights reserved.