Interface CfnJobDefinition.UlimitProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJobDefinition.UlimitProperty.Jsii$Proxy
- Enclosing class:
- CfnJobDefinition
@Stability(Stable)
public static interface CfnJobDefinition.UlimitProperty
extends software.amazon.jsii.JsiiSerializable
The
ulimit settings to pass to the container.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJobDefinition.UlimitPropertystatic final classAn implementation forCfnJobDefinition.UlimitProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHardLimit
The hard limit for theulimittype. -
getName
Thetypeof theulimit. -
getSoftLimit
The soft limit for theulimittype. -
builder
-