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