interface CfnQueueLimitAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnQueueLimitAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnQueueLimitAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnQueueLimitAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnQueueLimitAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » 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 { aws_deadline as deadline } from '@aws-cdk/cfn-property-mixins';
const cfnQueueLimitAssociationMixinProps: deadline.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