interface CfnQueueMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCS.Mixins.CfnQueueMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcs/mixins#CfnQueueMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.pcs.mixins.CfnQueueMixinProps |
Python | aws_cdk.mixins_preview.aws_pcs.mixins.CfnQueueMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_pcs » mixins » CfnQueueMixinProps |
Properties for CfnQueuePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-queue.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pcs_mixins } from '@aws-cdk/mixins-preview/aws-pcs';
const cfnQueueMixinProps: pcs_mixins.CfnQueueMixinProps = {
clusterId: 'clusterId',
computeNodeGroupConfigurations: [{
computeNodeGroupId: 'computeNodeGroupId',
}],
name: 'name',
slurmConfiguration: {
slurmCustomSettings: [{
parameterName: 'parameterName',
parameterValue: 'parameterValue',
}],
},
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The ID of the cluster of the queue. |
| compute | IResolvable | (IResolvable | Compute)[] | The list of compute node group configurations associated with the queue. |
| name? | string | The name that identifies the queue. |
| slurm | IResolvable | Slurm | Additional options related to the Slurm scheduler. |
| tags? | { [string]: string } | 1 or more tags added to the resource. |
clusterId?
Type:
string
(optional)
The ID of the cluster of the queue.
computeNodeGroupConfigurations?
Type:
IResolvable | (IResolvable | Compute)[]
(optional)
The list of compute node group configurations associated with the queue.
Queues assign jobs to associated compute node groups.
name?
Type:
string
(optional)
The name that identifies the queue.
slurmConfiguration?
Type:
IResolvable | Slurm
(optional)
Additional options related to the Slurm scheduler.
tags?
Type:
{ [string]: string }
(optional)
1 or more tags added to the resource.
Each tag consists of a tag key and tag value. The tag value is optional and can be an empty string.

.NET
Go
Java
Python
TypeScript