Module Values.AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDetailsSource

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

Sourcetype nonrec t = {
  1. capabilities : AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersCapabilitiesDetails.t option;
    (*

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

    *)
  2. devices : AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersDevicesList.t option;
    (*

    The host devices to expose to the container.

    *)
  3. initProcessEnabled : Boolean.t option;
    (*

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

    *)
  4. maxSwap : Integer.t option;
    (*

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

    *)
  5. sharedMemorySize : Integer.t option;
    (*

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

    *)
  6. swappiness : Integer.t option;
    (*

    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.

    *)
  7. tmpfs : AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsList.t option;
    (*

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

    *)
}
Sourceval make : ?capabilities:??? -> ?devices:??? -> ?initProcessEnabled:??? -> ?maxSwap:??? -> ?sharedMemorySize:??? -> ?swappiness:??? -> ?tmpfs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.t ]) list ] list | `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t