interface CfnStackUserAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnStackUserAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnStackUserAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnStackUserAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnStackUserAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnStackUserAssociationMixinProps |
Properties for CfnStackUserAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appstream_mixins } from '@aws-cdk/mixins-preview/aws-appstream';
const cfnStackUserAssociationMixinProps: appstream_mixins.CfnStackUserAssociationMixinProps = {
authenticationType: 'authenticationType',
sendEmailNotification: false,
stackName: 'stackName',
userName: 'userName',
};
Properties
| Name | Type | Description |
|---|---|---|
| authentication | string | The authentication type for the user who is associated with the stack. |
| send | boolean | IResolvable | Specifies whether a welcome email is sent to a user after the user is created in the user pool. |
| stack | string | The name of the stack that is associated with the user. |
| user | string | The email address of the user who is associated with the stack. |
authenticationType?
Type:
string
(optional)
The authentication type for the user who is associated with the stack.
You must specify USERPOOL.
sendEmailNotification?
Type:
boolean | IResolvable
(optional)
Specifies whether a welcome email is sent to a user after the user is created in the user pool.
stackName?
Type:
string
(optional)
The name of the stack that is associated with the user.
userName?
Type:
string
(optional)
The email address of the user who is associated with the stack.
Users' email addresses are case-sensitive.

.NET
Go
Java
Python
TypeScript