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

AwsEcsTaskDefinitionVolumesDockerVolumeConfigurationDetails

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

Information about a Docker volume.

interface AwsEcsTaskDefinitionVolumesDockerVolumeConfigurationDetails {
Autoprovision?: boolean | null;
Driver?: string | null;
DriverOpts?: {
[key: string]: string | null | undefined;
}
| null;
Labels?: {
[key: string]: string | null | undefined;
}
| null;
Scope?: string | null;
}

§Properties

§
Autoprovision?: boolean | null
[src]

Whether to create the Docker volume automatically if it does not already exist.

§
Driver?: string | null
[src]

The Docker volume driver to use.

§
DriverOpts?: {
[key: string]: string | null | undefined;
}
| null
[src]

A map of Docker driver-specific options that are passed through.

§
Labels?: {
[key: string]: string | null | undefined;
}
| null
[src]

Custom metadata to add to the Docker volume.

§
Scope?: string | null
[src]

The scope for the Docker volume that determines its lifecycle. Docker volumes that are scoped to a task are provisioned automatically when the task starts and destroyed when the task stops. Docker volumes that are shared persist after the task stops. Valid values are shared or task.