interface CfnQueueLimitAssociationProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_deadline.CfnQueueLimitAssociationProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnQueueLimitAssociationProps | 
|  Java | software.amazon.awscdk.services.deadline.CfnQueueLimitAssociationProps | 
|  Python | aws_cdk.aws_deadline.CfnQueueLimitAssociationProps | 
|  TypeScript | aws-cdk-lib»aws_deadline»CfnQueueLimitAssociationProps | 
Properties for defining a CfnQueueLimitAssociation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_deadline as deadline } from 'aws-cdk-lib';
const cfnQueueLimitAssociationProps: deadline.CfnQueueLimitAssociationProps = {
  farmId: 'farmId',
  limitId: 'limitId',
  queueId: 'queueId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| farm | string | The unique identifier of the farm that contains the queue-limit association. | 
| limit | string | The unique identifier of the limit in the association. | 
| queue | string | The unique identifier of the queue in the association. | 
farmId
Type:
string
The unique identifier of the farm that contains the queue-limit association.
limitId
Type:
string
The unique identifier of the limit in the association.
queueId
Type:
string
The unique identifier of the queue in the association.
