QueueLimitAssociationReference

class aws_cdk.aws_deadline.QueueLimitAssociationReference(*, farm_id, limit_id, queue_id)

Bases: object

A reference to a QueueLimitAssociation resource.

Parameters:
  • farm_id (str) – The FarmId of the QueueLimitAssociation resource.

  • limit_id (str) – The LimitId of the QueueLimitAssociation resource.

  • queue_id (str) – The QueueId of the QueueLimitAssociation 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_limit_association_reference = deadline.QueueLimitAssociationReference(
    farm_id="farmId",
    limit_id="limitId",
    queue_id="queueId"
)

Attributes

farm_id

The FarmId of the QueueLimitAssociation resource.

limit_id

The LimitId of the QueueLimitAssociation resource.

queue_id

The QueueId of the QueueLimitAssociation resource.