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: