interface ServiceEnvironmentOrderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Batch.CfnJobQueuePropsMixin.ServiceEnvironmentOrderProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbatch#CfnJobQueuePropsMixin_ServiceEnvironmentOrderProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.batch.CfnJobQueuePropsMixin.ServiceEnvironmentOrderProperty |
Python | aws_cdk.cfn_property_mixins.aws_batch.CfnJobQueuePropsMixin.ServiceEnvironmentOrderProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_batch » CfnJobQueuePropsMixin » ServiceEnvironmentOrderProperty |
Specifies the order of a service environment for a job queue.
This determines the priority order when multiple service environments are associated with the same job queue.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_batch as batch } from '@aws-cdk/cfn-property-mixins';
const serviceEnvironmentOrderProperty: batch.CfnJobQueuePropsMixin.ServiceEnvironmentOrderProperty = {
order: 123,
serviceEnvironment: 'serviceEnvironment',
};
Properties
| Name | Type | Description |
|---|---|---|
| order? | number | The order of the service environment. |
| service | string | The name or ARN of the service environment. |
order?
Type:
number
(optional)
The order of the service environment.
Job queues with a higher priority are evaluated first when associated with the same service environment.
serviceEnvironment?
Type:
string
(optional)
The name or ARN of the service environment.

.NET
Go
Java
Python
TypeScript