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. For more information, see Ulimit .
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnJobDefinition.UlimitProperty
static final class
An implementation forCfnJobDefinition.UlimitProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHardLimit
The hard limit for theulimit
type.- See Also:
-
getName
Thetype
of theulimit
.Valid values are:
core
|cpu
|data
|fsize
|locks
|memlock
|msgqueue
|nice
|nofile
|nproc
|rss
|rtprio
|rttime
|sigpending
|stack
.- See Also:
-
getSoftLimit
The soft limit for theulimit
type.- See Also:
-
builder
-