Interface CfnJobDefinitionPropsMixin.UlimitProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnJobDefinitionPropsMixin.UlimitProperty.Jsii$Proxy
- Enclosing class:
CfnJobDefinitionPropsMixin
@Stability(Stable)
public static interface CfnJobDefinitionPropsMixin.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.cfnpropertymixins.services.batch.*;
UlimitProperty ulimitProperty = UlimitProperty.builder()
.hardLimit(123)
.name("name")
.softLimit(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnJobDefinitionPropsMixin.UlimitPropertystatic final classAn implementation forCfnJobDefinitionPropsMixin.UlimitProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHardLimit
The hard limit for theulimittype.- See Also:
-
getName
Thetypeof 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 theulimittype.- See Also:
-
builder
-