Interface CfnJobQueue.ServiceEnvironmentOrderProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJobQueue.ServiceEnvironmentOrderProperty.Jsii$Proxy
- Enclosing class:
CfnJobQueue
@Stability(Stable)
public static interface CfnJobQueue.ServiceEnvironmentOrderProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.batch.*; ServiceEnvironmentOrderProperty serviceEnvironmentOrderProperty = ServiceEnvironmentOrderProperty.builder() .order(123) .serviceEnvironment("serviceEnvironment") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnJobQueue.ServiceEnvironmentOrderProperty
static final class
An implementation forCfnJobQueue.ServiceEnvironmentOrderProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOrder
The order of the service environment.Job queues with a higher priority are evaluated first when associated with the same service environment.
- See Also:
-
getServiceEnvironment
The name or ARN of the service environment.- See Also:
-
builder
-