@Stability(value=Stable)
public static interface CfnJobDefinition.UlimitProperty
extends software.amazon.jsii.JsiiSerializable
This object isn't applicable to jobs that are running on Fargate resources.
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.*;
UlimitProperty ulimitProperty = UlimitProperty.builder()
.hardLimit(123)
.name("name")
.softLimit(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnJobDefinition.UlimitProperty.Builder
A builder for
CfnJobDefinition.UlimitProperty |
static class |
CfnJobDefinition.UlimitProperty.Jsii$Proxy
An implementation for
CfnJobDefinition.UlimitProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnJobDefinition.UlimitProperty.Builder |
builder() |
Number |
getHardLimit()
The hard limit for the `ulimit` type.
|
String |
getName()
The `type` of the `ulimit` .
|
Number |
getSoftLimit()
The soft limit for the `ulimit` type.
|
@Stability(value=Stable) @NotNull Number getHardLimit()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull Number getSoftLimit()
@Stability(value=Stable) static CfnJobDefinition.UlimitProperty.Builder builder()
Copyright © 2022. All rights reserved.