aws-cdk-lib.aws_appstream.CfnStackUserAssociationProps

interface CfnStackUserAssociationProps

LanguageType name
.NETAmazon.CDK.AWS.AppStream.CfnStackUserAssociationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappstream#CfnStackUserAssociationProps
Javasoftware.amazon.awscdk.services.appstream.CfnStackUserAssociationProps
Pythonaws_cdk.aws_appstream.CfnStackUserAssociationProps
TypeScript aws-cdk-lib » aws_appstream » CfnStackUserAssociationProps

Properties for defining a CfnStackUserAssociation.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appstream as appstream } from 'aws-cdk-lib';
const cfnStackUserAssociationProps: appstream.CfnStackUserAssociationProps = {
  authenticationType: 'authenticationType',
  stackName: 'stackName',
  userName: 'userName',

  // the properties below are optional
  sendEmailNotification: false,
};

Properties

NameTypeDescription
authenticationTypestringThe authentication type for the user who is associated with the stack.
stackNamestringThe name of the stack that is associated with the user.
userNamestringThe email address of the user who is associated with the stack.
sendEmailNotification?boolean | IResolvableSpecifies whether a welcome email is sent to a user after the user is created in the user pool.

authenticationType

Type: string

The authentication type for the user who is associated with the stack.

You must specify USERPOOL.


stackName

Type: string

The name of the stack that is associated with the user.


userName

Type: string

The email address of the user who is associated with the stack.

Users' email addresses are case-sensitive.


sendEmailNotification?

Type: boolean | IResolvable (optional)

Specifies whether a welcome email is sent to a user after the user is created in the user pool.