interface CfnQueueFleetAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnQueueFleetAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnQueueFleetAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnQueueFleetAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnQueueFleetAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnQueueFleetAssociationMixinProps |
Properties for CfnQueueFleetAssociationPropsMixin.
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 cfnQueueFleetAssociationMixinProps: deadline_mixins.CfnQueueFleetAssociationMixinProps = {
farmId: 'farmId',
fleetId: 'fleetId',
queueId: 'queueId',
};
Properties
| Name | Type | Description |
|---|---|---|
| farm | string | The identifier of the farm that contains the queue and the fleet. |
| fleet | string | The fleet ID. |
| queue | string | The queue ID. |
farmId?
Type:
string
(optional)
The identifier of the farm that contains the queue and the fleet.
fleetId?
Type:
string
(optional)
The fleet ID.
queueId?
Type:
string
(optional)
The queue ID.

.NET
Go
Java
Python
TypeScript