EntitlementReference
- class aws_cdk.interfaces.aws_appstream.EntitlementReference(*, entitlement_name, stack_name)
Bases:
objectA 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.interfaces import aws_appstream as interfaces_aws_appstream entitlement_reference = interfaces_aws_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.