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

AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails

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

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

interface AwsEcsTaskDefinitionContainerDefinitionsLinuxParametersTmpfsDetails {
ContainerPath?: string | null;
MountOptions?: string[] | null;
Size?: number | null;
}

§Properties

§
ContainerPath?: string | null
[src]

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

§
MountOptions?: string[] | null
[src]

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"

§
Size?: number | null
[src]

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