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

AwsEcsTaskDefinitionContainerDefinitionsMountPointsDetails

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

A mount point for the data volumes in the container.

interface AwsEcsTaskDefinitionContainerDefinitionsMountPointsDetails {
ContainerPath?: string | null;
ReadOnly?: boolean | null;
SourceVolume?: string | null;
}

§Properties

§
ContainerPath?: string | null
[src]

The path on the container to mount the host volume at.

§
ReadOnly?: boolean | null
[src]

Whether the container has read-only access to the volume.

§
SourceVolume?: string | null
[src]

The name of the volume to mount. Must match the name of a volume listed in VolumeDetails for the task definition.