StackFleetAssociationReference
- class aws_cdk.interfaces.aws_appstream.StackFleetAssociationReference(*, fleet_name, stack_name)
Bases:
objectA reference to a StackFleetAssociation resource.
- Parameters:
fleet_name (
str) – The FleetName of the StackFleetAssociation resource.stack_name (
str) – The StackName of the StackFleetAssociation 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_fleet_association_reference = interfaces_appstream.StackFleetAssociationReference( fleet_name="fleetName", stack_name="stackName" )
Attributes
- fleet_name
The FleetName of the StackFleetAssociation resource.
- stack_name
The StackName of the StackFleetAssociation resource.