Module Values.AwsMountPointSource

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

Sourcetype nonrec t = {
  1. sourceVolume : NonEmptyString.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 : NonEmptyString.t option;
    (*

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

    *)
}
Sourceval make : ?sourceVolume:??? -> ?containerPath:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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