interface CfnQueueLimitAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnQueueLimitAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnQueueLimitAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnQueueLimitAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnQueueLimitAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnQueueLimitAssociationMixinProps |
Properties for CfnQueueLimitAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as deadline_mixins } from '@aws-cdk/mixins-preview/aws-deadline';
const cfnQueueLimitAssociationMixinProps: deadline_mixins.CfnQueueLimitAssociationMixinProps = {
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
(optional)
The unique identifier of the farm that contains the queue-limit association.
limitId?
Type:
string
(optional)
The unique identifier of the limit in the association.
queueId?
Type:
string
(optional)
The unique identifier of the queue in the association.

.NET
Go
Java
Python
TypeScript