Module Values.EksContainerVolumeMountSource

The volume mounts for a container for an Amazon EKS job. For more information about volumes and volume mounts in Kubernetes, see Volumes in the Kubernetes documentation.

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

    The name the volume mount. This must match the name of one of the volumes in the pod.

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

    The path on the container where the volume is mounted.

    *)
  3. subPath : String_.t option;
    (*

    A sub-path inside the referenced volume instead of its root.

    *)
  4. readOnly : Boolean.t option;
    (*

    If this value is true, the container has read-only access to the volume. Otherwise, the container can write to the volume. The default value is false.

    *)
}
Sourceval make : ?name:??? -> ?mountPath:??? -> ?subPath:??? -> ?readOnly:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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