Interface CfnJobQueueProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJobQueueProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:11.888Z") @Stability(Stable) public interface CfnJobQueueProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnJobQueue.

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.*;
 CfnJobQueueProps cfnJobQueueProps = CfnJobQueueProps.builder()
         .computeEnvironmentOrder(List.of(ComputeEnvironmentOrderProperty.builder()
                 .computeEnvironment("computeEnvironment")
                 .order(123)
                 .build()))
         .priority(123)
         // the properties below are optional
         .jobQueueName("jobQueueName")
         .jobStateTimeLimitActions(List.of(JobStateTimeLimitActionProperty.builder()
                 .action("action")
                 .maxTimeSeconds(123)
                 .reason("reason")
                 .state("state")
                 .build()))
         .schedulingPolicyArn("schedulingPolicyArn")
         .state("state")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also: