@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:25.380Z") @Stability(value=Stable) public interface CfnJobQueueProps extends software.amazon.jsii.JsiiSerializable
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")
.schedulingPolicyArn("schedulingPolicyArn")
.state("state")
.tags(Map.of(
"tagsKey", "tags"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJobQueueProps.Builder
A builder for
CfnJobQueueProps |
static class |
CfnJobQueueProps.Jsii$Proxy
An implementation for
CfnJobQueueProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnJobQueueProps.Builder |
builder() |
Object |
getComputeEnvironmentOrder()
`AWS::Batch::JobQueue.ComputeEnvironmentOrder`.
|
default String |
getJobQueueName()
`AWS::Batch::JobQueue.JobQueueName`.
|
Number |
getPriority()
`AWS::Batch::JobQueue.Priority`.
|
default String |
getSchedulingPolicyArn()
`AWS::Batch::JobQueue.SchedulingPolicyArn`.
|
default String |
getState()
`AWS::Batch::JobQueue.State`.
|
default Map<String,String> |
getTags()
`AWS::Batch::JobQueue.Tags`.
|
@Stability(value=Stable) @NotNull Object getComputeEnvironmentOrder()
@Stability(value=Stable) @NotNull Number getPriority()
@Stability(value=Stable) @Nullable default String getJobQueueName()
@Stability(value=Stable) @Nullable default String getSchedulingPolicyArn()
@Stability(value=Stable) @Nullable default String getState()
@Stability(value=Stable) @Nullable default Map<String,String> getTags()
@Stability(value=Stable) static CfnJobQueueProps.Builder builder()
CfnJobQueueProps.Builder of CfnJobQueuePropsCopyright © 2022. All rights reserved.