QueueFleetAssociationReference
- class aws_cdk.interfaces.aws_deadline.QueueFleetAssociationReference(*, farm_id, fleet_id, queue_id)
Bases:
objectA reference to a QueueFleetAssociation resource.
- Parameters:
farm_id (
str) – The FarmId of the QueueFleetAssociation resource.fleet_id (
str) – The FleetId of the QueueFleetAssociation resource.queue_id (
str) – The QueueId of the QueueFleetAssociation 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_deadline as interfaces_aws_deadline queue_fleet_association_reference = interfaces_aws_deadline.QueueFleetAssociationReference( farm_id="farmId", fleet_id="fleetId", queue_id="queueId" )
Attributes
- farm_id
The FarmId of the QueueFleetAssociation resource.
- fleet_id
The FleetId of the QueueFleetAssociation resource.
- queue_id
The QueueId of the QueueFleetAssociation resource.