You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ECS::Types::SystemControl

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing SystemControl as input to an Aws::Client method, you can use a vanilla Hash:

{
  namespace: "String",
  value: "String",
}

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.

It is not recommended that you specify network-related systemControls parameters for multiple containers in a single task that also uses either the awsvpc or host network mode 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 is 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 as well as that of all containers of any tasks running on that container instance.

Instance Attribute Summary collapse

Instance Attribute Details

#namespaceString

The namespaced kernel parameter for which to set a value.

Returns:

  • (String)

    The namespaced kernel parameter for which to set a value.

#valueString

The value for the namespaced kernel parameter specified in namespace.

Returns:

  • (String)

    The value for the namespaced kernel parameter specified in namespace.