import { _KernelCapabilities, _UnmarshalledKernelCapabilities } from "./_KernelCapabilities"; import { _Device, _UnmarshalledDevice } from "./_Device"; import { _Tmpfs, _UnmarshalledTmpfs } from "./_Tmpfs"; /** *

Linux-specific options that are applied to the container, such as Linux KernelCapabilities.

*/ export interface _LinuxParameters { /** *

The Linux capabilities for the container that are added to or dropped from the default configuration provided by Docker.

If you are using tasks that use the Fargate launch type, capabilities is supported but the add parameter is not supported.

*/ capabilities?: _KernelCapabilities; /** *

Any host devices to expose to the container. This parameter maps to Devices in the Create a container section of the Docker Remote API and the --device option to docker run.

If you are using tasks that use the Fargate launch type, the devices parameter is not supported.

*/ devices?: Array<_Device> | Iterable<_Device>; /** *

Run an init process inside the container that forwards signals and reaps processes. This parameter maps to the --init option to docker run. This parameter requires version 1.25 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'

*/ initProcessEnabled?: boolean; /** *

The value for the size (in MiB) of the /dev/shm volume. This parameter maps to the --shm-size option to docker run.

If you are using tasks that use the Fargate launch type, the sharedMemorySize parameter is not supported.

*/ sharedMemorySize?: number; /** *

The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the --tmpfs option to docker run.

If you are using tasks that use the Fargate launch type, the tmpfs parameter is not supported.

*/ tmpfs?: Array<_Tmpfs> | Iterable<_Tmpfs>; } export interface _UnmarshalledLinuxParameters extends _LinuxParameters { /** *

The Linux capabilities for the container that are added to or dropped from the default configuration provided by Docker.

If you are using tasks that use the Fargate launch type, capabilities is supported but the add parameter is not supported.

*/ capabilities?: _UnmarshalledKernelCapabilities; /** *

Any host devices to expose to the container. This parameter maps to Devices in the Create a container section of the Docker Remote API and the --device option to docker run.

If you are using tasks that use the Fargate launch type, the devices parameter is not supported.

*/ devices?: Array<_UnmarshalledDevice>; /** *

The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the --tmpfs option to docker run.

If you are using tasks that use the Fargate launch type, the tmpfs parameter is not supported.

*/ tmpfs?: Array<_UnmarshalledTmpfs>; }