Interface Ulimit
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Ulimit.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:18.712Z")
@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
-
Method Summary
Modifier and TypeMethodDescriptionstatic Ulimit.Builder
builder()
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.Builder
ofUlimit
-