public static interface CfnTaskDefinition.SystemControlProperty
This parameter maps to Sysctls
in the Create a container section of the Docker Remote API and the --sysctl
option to docker run .
We don't recommend that you specify network-related systemControls
parameters for multiple containers in a single task. This task also uses either the awsvpc
or host
network mode. It does it for the following reasons.
awsvpc
network mode, if you set systemControls
for any container, it applies to all containers in the task. If you set different systemControls
for multiple containers in a single task, the container that's started last determines which systemControls
take effect.host
network mode, the systemControls
parameter applies to the container instance's kernel parameter and that of all containers of any tasks running on that container instance.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.*; SystemControlProperty systemControlProperty = SystemControlProperty.builder() .namespace("namespace") .value("value") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnTaskDefinition.SystemControlProperty.Builder
A builder for
CfnTaskDefinition.SystemControlProperty |
static class |
CfnTaskDefinition.SystemControlProperty.Jsii$Proxy
An implementation for
CfnTaskDefinition.SystemControlProperty |
Modifier and Type | Method and Description |
---|---|
static CfnTaskDefinition.SystemControlProperty.Builder |
builder() |
default java.lang.String |
getNamespace()
The namespaced kernel parameter to set a `value` for.
|
default java.lang.String |
getValue()
The value for the namespaced kernel parameter that's specified in `namespace` .
|
default java.lang.String getNamespace()
default java.lang.String getValue()
static CfnTaskDefinition.SystemControlProperty.Builder builder()