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

AwsEcsContainerDetails

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

Provides information about an Amazon ECS container.

interface AwsEcsContainerDetails {
Image?: string | null;
MountPoints?: AwsMountPoint[] | null;
Name?: string | null;
Privileged?: boolean | null;
}

§Properties

§
Image?: string | null
[src]

The image used for the container.

§
MountPoints?: AwsMountPoint[] | null
[src]

The mount points for data volumes in your container.

§
Name?: string | null
[src]

The name of the container.

§
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).