Class CfnJobQueue.ServiceEnvironmentOrderProperty
Specifies the order of a service environment for a job queue.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Batch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnJobQueue.ServiceEnvironmentOrderProperty : CfnJobQueue.IServiceEnvironmentOrderProperty
Syntax (vb)
Public Class CfnJobQueue.ServiceEnvironmentOrderProperty Implements 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
Constructors
| ServiceEnvironmentOrderProperty() | Specifies the order of a service environment for a job queue. |
Properties
| Order | The order of the service environment. |
| ServiceEnvironment | The name or ARN of the service environment. |
Constructors
ServiceEnvironmentOrderProperty()
Specifies the order of a service environment for a job queue.
public ServiceEnvironmentOrderProperty()
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"
};
Properties
Order
The order of the service environment.
public double Order { get; set; }
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.
public string ServiceEnvironment { get; set; }