Interface CfnJobQueuePropsMixin.ServiceEnvironmentOrderProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJobQueuePropsMixin.ServiceEnvironmentOrderProperty.Jsii$Proxy
Enclosing class:
CfnJobQueuePropsMixin

@Stability(Stable) public static interface CfnJobQueuePropsMixin.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.mixins.preview.services.batch.mixins.*;
 ServiceEnvironmentOrderProperty serviceEnvironmentOrderProperty = ServiceEnvironmentOrderProperty.builder()
         .order(123)
         .serviceEnvironment("serviceEnvironment")
         .build();
 

See Also: