@Stability(value=Stable)
public static interface CfnTaskDefinition.SystemControlProperty
extends software.amazon.jsii.JsiiSerializable
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 String |
getNamespace()
The namespaced kernel parameter to set a `value` for.
|
default String |
getValue()
The value for the namespaced kernel parameter that's specified in `namespace` .
|
@Stability(value=Stable) @Nullable default String getNamespace()
@Stability(value=Stable) @Nullable default String getValue()
@Stability(value=Stable) static CfnTaskDefinition.SystemControlProperty.Builder builder()
Copyright © 2022. All rights reserved.