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

ContainerDetails

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

Container details related to a finding.

interface ContainerDetails {
ContainerRuntime?: string | null;
ImageId?: string | null;
ImageName?: string | null;
LaunchedAt?: string | null;
Name?: string | null;
Privileged?: boolean | null;
VolumeMounts?: VolumeMount[] | null;
}

§Properties

§
ContainerRuntime?: string | null
[src]

The runtime of the container.

§
ImageId?: string | null
[src]

The identifier of the container image related to a finding.

§
ImageName?: string | null
[src]

The name of the container image related to a finding.

§
LaunchedAt?: string | null
[src]

Indicates when the container started.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T. For example, 2020-03-22T13:22:13.933Z.

§
Name?: string | null
[src]

The name of the container related to a finding.

§
Privileged?: boolean | null
[src]

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

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

Provides information about the mounting of a volume in a container.