CfnStackUserAssociationMixinProps
- class aws_cdk.mixins_preview.aws_appstream.mixins.CfnStackUserAssociationMixinProps(*, authentication_type=None, send_email_notification=None, stack_name=None, user_name=None)
Bases:
objectProperties for CfnStackUserAssociationPropsMixin.
- Parameters:
authentication_type (
Optional[str]) – The authentication type for the user who is associated with the stack. You must specify USERPOOL.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.stack_name (
Optional[str]) – The name of the stack that is associated with the user.user_name (
Optional[str]) – The email address of the user who is associated with the stack. .. epigraph:: Users’ email addresses are case-sensitive.
- 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.mixins_preview.aws_appstream import mixins as appstream_mixins cfn_stack_user_association_mixin_props = appstream_mixins.CfnStackUserAssociationMixinProps( authentication_type="authenticationType", send_email_notification=False, stack_name="stackName", user_name="userName" )
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.