Values.AwsEcsTaskDefinitionVolumesDockerVolumeConfigurationDetailsSourceInformation about a Docker volume.
type nonrec t = {autoprovision : Boolean.t option;Whether to create the Docker volume automatically if it does not already exist.
*)driver : NonEmptyString.t option;The Docker volume driver to use.
*)driverOpts : FieldMap.t option;A map of Docker driver-specific options that are passed through.
*)labels : FieldMap.t option;Custom metadata to add to the Docker volume.
*)scope : NonEmptyString.t option;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.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Map of
([> `String of NonEmptyString.t ]
* [> `String of NonEmptyString.t ])
list
| `String of NonEmptyString.t ])
list ]