CfnStackUserAssociationProps

class aws_cdk.aws_appstream.CfnStackUserAssociationProps(*, authentication_type, stack_name, user_name, send_email_notification=None)

Bases: object

Properties for defining a CfnStackUserAssociation.

Parameters:
  • authentication_type (str) – The authentication type for the user who is associated with the stack. You must specify USERPOOL.

  • stack_name (str) – The name of the stack that is associated with the user.

  • user_name (str) – The email address of the user who is associated with the stack. .. epigraph:: Users’ email addresses are case-sensitive.

  • send_email_notification (Union[bool, IResolvable, None]) – Specifies whether a welcome email is sent to a user after the user is created in the user pool.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_appstream as appstream

cfn_stack_user_association_props = appstream.CfnStackUserAssociationProps(
    authentication_type="authenticationType",
    stack_name="stackName",
    user_name="userName",

    # the properties below are optional
    send_email_notification=False
)

Attributes

authentication_type

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

You must specify USERPOOL.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-authenticationtype

send_email_notification

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-sendemailnotification

stack_name

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-stackname

user_name

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

Users’ email addresses are case-sensitive.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stackuserassociation.html#cfn-appstream-stackuserassociation-username