interface CfnQueueEnvironmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnQueueEnvironmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnQueueEnvironmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnQueueEnvironmentMixinProps |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnQueueEnvironmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnQueueEnvironmentMixinProps |
Properties for CfnQueueEnvironmentPropsMixin.
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 cfnQueueEnvironmentMixinProps: deadline_mixins.CfnQueueEnvironmentMixinProps = {
farmId: 'farmId',
priority: 123,
queueId: 'queueId',
template: 'template',
templateType: 'templateType',
};
Properties
| Name | Type | Description |
|---|---|---|
| farm | string | The identifier assigned to the farm that contains the queue. |
| priority? | number | The queue environment's priority. |
| queue | string | The unique identifier of the queue that contains the environment. |
| template? | string | A JSON or YAML template that describes the processing environment for the queue. |
| template | string | Specifies whether the template for the queue environment is JSON or YAML. |
farmId?
Type:
string
(optional)
The identifier assigned to the farm that contains the queue.
priority?
Type:
number
(optional)
The queue environment's priority.
queueId?
Type:
string
(optional)
The unique identifier of the queue that contains the environment.
template?
Type:
string
(optional)
A JSON or YAML template that describes the processing environment for the queue.
templateType?
Type:
string
(optional)
Specifies whether the template for the queue environment is JSON or YAML.

.NET
Go
Java
Python
TypeScript