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

Container

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

Details of a container.

interface Container {
ContainerRuntime?: string | null;
Id?: string | null;
Image?: string | null;
ImagePrefix?: string | null;
Name?: string | null;
SecurityContext?: SecurityContext | null;
VolumeMounts?: VolumeMount[] | null;
}

§Properties

§
ContainerRuntime?: string | null
[src]

The container runtime (such as, Docker or containerd) used to run the container.

§
Id?: string | null
[src]

Container ID.

§
Image?: string | null
[src]

Container image.

§
ImagePrefix?: string | null
[src]

Part of the image name before the last slash. For example, imagePrefix for public.ecr.aws/amazonlinux/amazonlinux:latest would be public.ecr.aws/amazonlinux. If the image name is relative and does not have a slash, this field is empty.

§
Name?: string | null
[src]

Container name.

§
SecurityContext?: SecurityContext | null
[src]

Container security context.

§
VolumeMounts?: VolumeMount[] | null
[src]

Container volume mounts.