@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.767Z") @Stability(value=Stable) public interface Ulimit extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
Ulimit.Builder
A builder for
Ulimit |
static class |
Ulimit.Jsii$Proxy
An implementation for
Ulimit |
| Modifier and Type | Method and Description |
|---|---|
static Ulimit.Builder |
builder() |
Number |
getHardLimit()
The hard limit for the ulimit type.
|
UlimitName |
getName()
The type of the ulimit.
|
Number |
getSoftLimit()
The soft limit for the ulimit type.
|
@Stability(value=Stable) @NotNull Number getHardLimit()
@Stability(value=Stable) @NotNull UlimitName getName()
For more information, see UlimitName.
@Stability(value=Stable) @NotNull Number getSoftLimit()
@Stability(value=Stable) static Ulimit.Builder builder()
Ulimit.Builder of UlimitCopyright © 2022. All rights reserved.