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();