Interface Ulimit
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Ulimit.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:50.630Z")
@Stability(Stable)
public interface Ulimit
extends software.amazon.jsii.JsiiSerializable
The ulimit settings to pass to the container.
NOTE: Does not work for Windows containers.
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.ecs.*;
Ulimit ulimit = Ulimit.builder()
.hardLimit(123)
.name(UlimitName.CORE)
.softLimit(123)
.build();
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic Ulimit.Builderbuilder()The hard limit for the ulimit type.getName()The type of the ulimit.The soft limit for the ulimit type.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHardLimit
The hard limit for the ulimit type. -
getName
The type of the ulimit.For more information, see UlimitName.
-
getSoftLimit
The soft limit for the ulimit type. -
builder
- Returns:
- a
Ulimit.BuilderofUlimit
-