Module Values.MountPointSource

The details for a volume mount point that's used in a container definition.

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

    The name of the volume to mount. Must be a volume name referenced in the name parameter of task definition volume.

    *)
  2. containerPath : String_.t option;
    (*

    The path on the container to mount the host volume at.

    *)
  3. 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 : ?sourceVolume:??? -> ?containerPath:??? -> ?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