Interface CfnJobQueueMixinProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:56.394Z") @Stability(Stable) public interface CfnJobQueueMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnJobQueuePropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.batch.*;
 CfnJobQueueMixinProps cfnJobQueueMixinProps = CfnJobQueueMixinProps.builder()
         .computeEnvironmentOrder(List.of(ComputeEnvironmentOrderProperty.builder()
                 .computeEnvironment("computeEnvironment")
                 .order(123)
                 .build()))
         .jobQueueName("jobQueueName")
         .jobQueueType("jobQueueType")
         .jobStateTimeLimitActions(List.of(JobStateTimeLimitActionProperty.builder()
                 .action("action")
                 .maxTimeSeconds(123)
                 .reason("reason")
                 .state("state")
                 .build()))
         .priority(123)
         .schedulingPolicyArn("schedulingPolicyArn")
         .serviceEnvironmentOrder(List.of(ServiceEnvironmentOrderProperty.builder()
                 .order(123)
                 .serviceEnvironment("serviceEnvironment")
                 .build()))
         .state("state")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .build();
 

See Also: