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

AwsEcsTaskDefinitionContainerDefinitionsDetails

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

A container definition that describes a container in the task.

interface AwsEcsTaskDefinitionContainerDefinitionsDetails {
Command?: string[] | null;
Cpu?: number | null;
DisableNetworking?: boolean | null;
DnsSearchDomains?: string[] | null;
DnsServers?: string[] | null;
DockerLabels?: {
[key: string]: string | null | undefined;
}
| null;
DockerSecurityOptions?: string[] | null;
EntryPoint?: string[] | null;
Essential?: boolean | null;
Hostname?: string | null;
Image?: string | null;
Interactive?: boolean | null;
Links?: string[] | null;
Memory?: number | null;
MemoryReservation?: number | null;
Name?: string | null;
Privileged?: boolean | null;
PseudoTerminal?: boolean | null;
ReadonlyRootFilesystem?: boolean | null;
StartTimeout?: number | null;
StopTimeout?: number | null;
User?: string | null;
WorkingDirectory?: string | null;
}

§Properties

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

The command that is passed to the container.

§
Cpu?: number | null
[src]

The number of CPU units reserved for the container.

§

The dependencies that are defined for container startup and shutdown.

§
DisableNetworking?: boolean | null
[src]

Whether to disable networking within the container.

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

A list of DNS search domains that are presented to the container.

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

A list of DNS servers that are presented to the container.

§
DockerLabels?: {
[key: string]: string | null | undefined;
}
| null
[src]

A key-value map of labels to add to the container.

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

A list of strings to provide custom labels for SELinux and AppArmor multi-level security systems.

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

The entry point that is passed to the container.

§

The environment variables to pass to a container.

§

A list of files containing the environment variables to pass to a container.

§
Essential?: boolean | null
[src]

Whether the container is essential. All tasks must have at least one essential container.

§

A list of hostnames and IP address mappings to append to the /etc/hosts file on the container.

§

The FireLens configuration for the container. Specifies and configures a log router for container logs.

§

The container health check command and associated configuration parameters for the container.

§
Hostname?: string | null
[src]

The hostname to use for the container.

§
Image?: string | null
[src]

The image used to start the container.

§
Interactive?: boolean | null
[src]

If set to true, then containerized applications can be deployed that require stdin or a tty to be allocated.

§

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

§

The log configuration specification for the container.

§
Memory?: number | null
[src]

The amount (in MiB) of memory to present to the container. If the container attempts to exceed the memory specified here, the container is shut down. The total amount of memory reserved for all containers within a task must be lower than the task memory value, if one is specified.

§
MemoryReservation?: number | null
[src]

The soft limit (in MiB) of memory to reserve for the container.

§

The mount points for the data volumes in the container.

§
Name?: string | null
[src]

The name of the container.

§

The list of port mappings for the container.

§
Privileged?: boolean | null
[src]

Whether the container is given elevated privileges on the host container instance. The elevated privileges are similar to the root user.

§
PseudoTerminal?: boolean | null
[src]

Whether to allocate a TTY to the container.

§
ReadonlyRootFilesystem?: boolean | null
[src]

Whether the container is given read-only access to its root file system.

§

The private repository authentication credentials to use.

§

The type and amount of a resource to assign to a container. The only supported resource is a GPU.

§

The secrets to pass to the container.

§
StartTimeout?: number | null
[src]

The number of seconds to wait before giving up on resolving dependencies for a container.

§
StopTimeout?: number | null
[src]

The number of seconds to wait before the container is stopped if it doesn't shut down normally on its own.

§

A list of namespaced kernel parameters to set in the container.

§

A list of ulimits to set in the container.

§
User?: string | null
[src]

The user to use inside the container.

The value can use one of the following formats.

  • _user_
    
  • _user_:_group_
  • _uid_
    
  • _uid_:_gid_
  • _user_:_gid_
  • _uid_:_group_
§

Data volumes to mount from another container.

§
WorkingDirectory?: string | null
[src]

The working directory in which to run commands inside the container.