@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:29.571Z") @Stability(value=Experimental) 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()
(experimental) The hard limit for the ulimit type.
|
UlimitName |
getName()
(experimental) The type of the ulimit.
|
Number |
getSoftLimit()
(experimental) The soft limit for the ulimit type.
|
@Stability(value=Experimental) @NotNull Number getHardLimit()
@Stability(value=Experimental) @NotNull UlimitName getName()
For more information, see UlimitName.
@Stability(value=Experimental) @NotNull Number getSoftLimit()
@Stability(value=Experimental) static Ulimit.Builder builder()
Ulimit.Builder of UlimitCopyright © 2022. All rights reserved.