Module Values.AwsEcsTaskDefinitionContainerDefinitionsVolumesFromDetailsSource

A data volume to mount from another container.

Sourcetype nonrec t = {
  1. readOnly : Boolean.t option;
    (*

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

    *)
  2. sourceContainer : NonEmptyString.t option;
    (*

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

    *)
}
Sourceval make : ?readOnly:??? -> ?sourceContainer:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.t ]) 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