/** *

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:

*/ export interface _SystemControl { /** *

The namespaced kernel parameter for which to set a value.

*/ namespace?: string; /** *

The value for the namespaced kernel parameter specified in namespace.

*/ value?: string; } export declare type _UnmarshalledSystemControl = _SystemControl;