Interface CfnJobQueue.IServiceEnvironmentOrderProperty
Specifies the order of a service environment for a job queue.
Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnJobQueue.IServiceEnvironmentOrderProperty
Syntax (vb)
Public Interface CfnJobQueue.IServiceEnvironmentOrderProperty
Remarks
This determines the priority order when multiple service environments are associated with the same job queue.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Batch;
var serviceEnvironmentOrderProperty = new ServiceEnvironmentOrderProperty {
Order = 123,
ServiceEnvironment = "serviceEnvironment"
};
Synopsis
Properties
| Order | The order of the service environment. |
| ServiceEnvironment | The name or ARN of the service environment. |
Properties
Order
The order of the service environment.
double Order { get; }
Property Value
Remarks
Job queues with a higher priority are evaluated first when associated with the same service environment.
ServiceEnvironment
The name or ARN of the service environment.
string ServiceEnvironment { get; }