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:
- 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.
- send_email_notification
Specifies whether a welcome email is sent to a user after the user is created in the user pool.
- stack_name
The name of the stack that is associated with the user.
- user_name
The email address of the user who is associated with the stack.
Users’ email addresses are case-sensitive.