StackUserAssociationReference

class aws_cdk.interfaces.aws_appstream.StackUserAssociationReference(*, authentication_type, stack_name, user_name)

Bases: object

A reference to a StackUserAssociation resource.

Parameters:
  • authentication_type (str) – The AuthenticationType of the StackUserAssociation resource.

  • stack_name (str) – The StackName of the StackUserAssociation resource.

  • user_name (str) – The UserName of the StackUserAssociation resource.

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.interfaces import aws_appstream as interfaces_appstream

stack_user_association_reference = interfaces_appstream.StackUserAssociationReference(
    authentication_type="authenticationType",
    stack_name="stackName",
    user_name="userName"
)

Attributes

authentication_type

The AuthenticationType of the StackUserAssociation resource.

stack_name

The StackName of the StackUserAssociation resource.

user_name

The UserName of the StackUserAssociation resource.