ApplicationEntitlementAssociationReference
- class aws_cdk.interfaces.aws_appstream.ApplicationEntitlementAssociationReference(*, application_identifier, entitlement_name, stack_name)
Bases:
objectA reference to a ApplicationEntitlementAssociation resource.
- Parameters:
application_identifier (
str) – The ApplicationIdentifier of the ApplicationEntitlementAssociation resource.entitlement_name (
str) – The EntitlementName of the ApplicationEntitlementAssociation resource.stack_name (
str) – The StackName of the ApplicationEntitlementAssociation 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 application_entitlement_association_reference = interfaces_appstream.ApplicationEntitlementAssociationReference( application_identifier="applicationIdentifier", entitlement_name="entitlementName", stack_name="stackName" )
Attributes
- application_identifier
The ApplicationIdentifier of the ApplicationEntitlementAssociation resource.
- entitlement_name
The EntitlementName of the ApplicationEntitlementAssociation resource.
- stack_name
The StackName of the ApplicationEntitlementAssociation resource.