interface QueueLimitAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Deadline.QueueLimitAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdeadline#QueueLimitAssociationReference |
Java | software.amazon.awscdk.interfaces.deadline.QueueLimitAssociationReference |
Python | aws_cdk.interfaces.aws_deadline.QueueLimitAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_deadline » QueueLimitAssociationReference |
A reference to a QueueLimitAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_deadline as interfaces_aws_deadline } from 'aws-cdk-lib/interfaces';
const queueLimitAssociationReference: interfaces_aws_deadline.QueueLimitAssociationReference = {
farmId: 'farmId',
limitId: 'limitId',
queueId: 'queueId',
};
Properties
| Name | Type | Description |
|---|---|---|
| farm | string | The FarmId of the QueueLimitAssociation resource. |
| limit | string | The LimitId of the QueueLimitAssociation resource. |
| queue | string | The QueueId of the QueueLimitAssociation resource. |
farmId
Type:
string
The FarmId of the QueueLimitAssociation resource.
limitId
Type:
string
The LimitId of the QueueLimitAssociation resource.
queueId
Type:
string
The QueueId of the QueueLimitAssociation resource.

.NET
Go
Java
Python
TypeScript