Module Values.VolumeFromSource

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

Sourcetype nonrec t = {
  1. sourceContainer : String_.t option;
    (*

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

    *)
  2. readOnly : BoxedBoolean.t option;
    (*

    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.

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