EntitlementReference
- class aws_cdk.aws_appstream.EntitlementReference(*, entitlement_name, stack_name)
Bases:
object
A reference to a Entitlement resource.
- Parameters:
entitlement_name (
str
) – The Name of the Entitlement resource.stack_name (
str
) – The StackName of the Entitlement 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 import aws_appstream as appstream entitlement_reference = appstream.EntitlementReference( entitlement_name="entitlementName", stack_name="stackName" )
Attributes
- entitlement_name
The Name of the Entitlement resource.
- stack_name
The StackName of the Entitlement resource.