UserReference

class aws_cdk.interfaces.aws_appstream.UserReference(*, authentication_type, user_arn, user_name)

Bases: object

A reference to a User resource.

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

  • user_arn (str) – The ARN of the User resource.

  • user_name (str) – The UserName of the User 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

user_reference = interfaces_appstream.UserReference(
    authentication_type="authenticationType",
    user_arn="userArn",
    user_name="userName"
)

Attributes

authentication_type

The AuthenticationType of the User resource.

user_arn

The ARN of the User resource.

user_name

The UserName of the User resource.