Class: Aws::ECS::Types::SystemControl
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::SystemControl
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecs/types.rb
Overview
A list of namespaced kernel parameters to set in the container. 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.
-
For tasks that use the `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.
-
For tasks that use the `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.
[1]: docs.docker.com/engine/api/v1.35/#operation/ContainerCreate [2]: docs.docker.com/engine/api/v1.35/ [3]: docs.docker.com/engine/reference/run/#security-configuration
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#namespace ⇒ String
The namespaced kernel parameter to set a `value` for.
-
#value ⇒ String
The value for the namespaced kernel parameter that's specified in `namespace`.
Instance Attribute Details
#namespace ⇒ String
The namespaced kernel parameter to set a `value` for.
9426 9427 9428 9429 9430 9431 |
# File 'lib/aws-sdk-ecs/types.rb', line 9426 class SystemControl < Struct.new( :namespace, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value for the namespaced kernel parameter that's specified in `namespace`.
9426 9427 9428 9429 9430 9431 |
# File 'lib/aws-sdk-ecs/types.rb', line 9426 class SystemControl < Struct.new( :namespace, :value) SENSITIVE = [] include Aws::Structure end |