QueueFleetAssociationReference

class aws_cdk.aws_deadline.QueueFleetAssociationReference(*, farm_id, fleet_id, queue_id)

Bases: object

A 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 import aws_deadline as deadline

queue_fleet_association_reference = 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.