Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails

import type { AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

Linux-specific modifications that are applied to the container, such as Linux kernel capabilities.

interface AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetails {
InitProcessEnabled?: boolean | null;
MaxSwap?: number | null;
SharedMemorySize?: number | null;
Swappiness?: number | null;
}

§Properties

§

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

§

The host devices to expose to the container.

§
InitProcessEnabled?: boolean | null
[src]

Whether to run an init process inside the container that forwards signals and reaps processes.

§
MaxSwap?: number | null
[src]

The total amount of swap memory (in MiB) that a container can use.

§
SharedMemorySize?: number | null
[src]

The value for the size (in MiB) of the /dev/shm volume.

§
Swappiness?: number | null
[src]

Configures the container's memory swappiness behavior. Determines how aggressively pages are swapped. The higher the value, the more aggressive the swappiness. The default is 60.

§

The container path, mount options, and size (in MiB) of the tmpfs mount.