Module Values.AwsEcsTaskDefinitionVolumesDetailsSource

A data volume to mount from another container.

Sourcetype nonrec t = {
  1. dockerVolumeConfiguration : AwsEcsTaskDefinitionVolumesDockerVolumeConfigurationDetails.t option;
    (*

    Information about a Docker volume.

    *)
  2. efsVolumeConfiguration : AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails.t option;
    (*

    Information about the Amazon Elastic File System file system that is used for task storage.

    *)
  3. host : AwsEcsTaskDefinitionVolumesHostDetails.t option;
    (*

    Information about a bind mount host volume.

    *)
  4. name : NonEmptyString.t option;
    (*

    The name of the data volume.

    *)
}
Sourceval make : ?dockerVolumeConfiguration:??? -> ?efsVolumeConfiguration:??? -> ?host:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `Map of ([> `String of NonEmptyString.t ] * [> `String of NonEmptyString.t ]) list | `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t