| Copyright | (c) 2013-2021 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
Amazonka.ECS.Types.SystemControl
Description
Synopsis
Documentation
data SystemControl Source #
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
awsvpcnetwork mode, if you setsystemControlsfor any container, it applies to all containers in the task. If you set differentsystemControlsfor multiple containers in a single task, the container that is started last determines whichsystemControlstake effect. - For tasks that use the
hostnetwork mode, thesystemControlsparameter applies to the container instance's kernel parameter as well as that of all containers of any tasks running on that container instance.
See: newSystemControl smart constructor.
Constructors
| SystemControl' | |
Instances
newSystemControl :: SystemControl Source #
Create a value of SystemControl with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:value:SystemControl', systemControl_value - The value for the namespaced kernel parameter specified in namespace.
$sel:namespace:SystemControl', systemControl_namespace - The namespaced kernel parameter for which to set a value.
systemControl_value :: Lens' SystemControl (Maybe Text) Source #
The value for the namespaced kernel parameter specified in namespace.
systemControl_namespace :: Lens' SystemControl (Maybe Text) Source #
The namespaced kernel parameter for which to set a value.