ContainerDefinition
import type { ContainerDefinition } from "https://aws-api-gyr5wj9zj0fg.deno.dev/v0.2/services/ecs.ts";interface ContainerDefinition {
command?: string[] | null;
cpu?: number | null;
dependsOn?: ContainerDependency[] | null;
disableNetworking?: boolean | null;
dnsSearchDomains?: string[] | null;
dnsServers?: string[] | null;
dockerLabels?: {} | null;
[key: string]: string | null | undefined;
dockerSecurityOptions?: string[] | null;
entryPoint?: string[] | null;
environment?: KeyValuePair[] | null;
environmentFiles?: EnvironmentFile[] | null;
essential?: boolean | null;
extraHosts?: HostEntry[] | null;
firelensConfiguration?: FirelensConfiguration | null;
healthCheck?: HealthCheck | null;
hostname?: string | null;
image?: string | null;
interactive?: boolean | null;
links?: string[] | null;
linuxParameters?: LinuxParameters | null;
logConfiguration?: LogConfiguration | null;
memory?: number | null;
memoryReservation?: number | null;
mountPoints?: MountPoint[] | null;
name?: string | null;
portMappings?: PortMapping[] | null;
privileged?: boolean | null;
pseudoTerminal?: boolean | null;
readonlyRootFilesystem?: boolean | null;
repositoryCredentials?: RepositoryCredentials | null;
resourceRequirements?: ResourceRequirement[] | null;
secrets?: Secret[] | null;
startTimeout?: number | null;
stopTimeout?: number | null;
systemControls?: SystemControl[] | null;
ulimits?: Ulimit[] | null;
user?: string | null;
volumesFrom?: VolumeFrom[] | null;
workingDirectory?: string | null;
}§Properties
§
dependsOn?: ContainerDependency[] | null
[src]§
environment?: KeyValuePair[] | null
[src]§
environmentFiles?: EnvironmentFile[] | null
[src]§
firelensConfiguration?: FirelensConfiguration | null
[src]§
healthCheck?: HealthCheck | null
[src]§
linuxParameters?: LinuxParameters | null
[src]§
logConfiguration?: LogConfiguration | null
[src]§
mountPoints?: MountPoint[] | null
[src]§
portMappings?: PortMapping[] | null
[src]§
repositoryCredentials?: RepositoryCredentials | null
[src]§
resourceRequirements?: ResourceRequirement[] | null
[src]§
systemControls?: SystemControl[] | null
[src]§
volumesFrom?: VolumeFrom[] | null
[src]