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

VolumeFrom

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

Details on a data volume from another container in the same task definition.

interface VolumeFrom {
readOnly?: boolean | null;
sourceContainer?: string | null;
}

§Properties

§
readOnly?: boolean | null
[src]

If this value is true, the container has read-only access to the volume. If this value is false, then the container can write to the volume. The default value is false.

§
sourceContainer?: string | null
[src]

The name of another container within the same task definition to mount volumes from.