Module Values.AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetailsSource

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

Sourcetype nonrec t = {
  1. containerPath : NonEmptyString.t option;
    (*

    The absolute file path where the tmpfs volume is to be mounted.

    *)
  2. mountOptions : NonEmptyStringList.t option;
    (*

    The list of tmpfs volume mount options. Valid values: "defaults" | "ro" | "rw" | "suid" | "nosuid" | "dev" | "nodev" | "exec" | "noexec" | "sync" | "async" | "dirsync" | "remount" | "mand" | "nomand" | "atime" | "noatime" | "diratime" | "nodiratime" | "bind" | "rbind" | "unbindable" | "runbindable" | "private" | "rprivate" | "shared" | "rshared" | "slave" | "rslave" | "relatime" | "norelatime" | "strictatime" | "nostrictatime" | "mode" | "uid" | "gid" | "nr_inodes" | "nr_blocks" | "mpol"

    *)
  3. size : Integer.t option;
    (*

    The maximum size (in MiB) of the tmpfs volume.

    *)
}
Sourceval make : ?containerPath:??? -> ?mountOptions:??? -> ?size:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.t ]) 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