Module Values.EksVolumeSource

Specifies an Amazon EKS volume for a job definition.

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

    The name of the volume. The name must be allowed as a DNS subdomain name. For more information, see DNS subdomain names in the Kubernetes documentation.

    *)
  2. hostPath : EksHostPath.t option;
    (*

    Specifies the configuration of a Kubernetes hostPath volume. For more information, see hostPath in the Kubernetes documentation.

    *)
  3. emptyDir : EksEmptyDir.t option;
    (*

    Specifies the configuration of a Kubernetes emptyDir volume. For more information, see emptyDir in the Kubernetes documentation.

    *)
  4. secret : EksSecret.t option;
    (*

    Specifies the configuration of a Kubernetes secret volume. For more information, see secret in the Kubernetes documentation.

    *)
  5. persistentVolumeClaim : EksPersistentVolumeClaim.t option;
    (*

    Specifies the configuration of a Kubernetes persistentVolumeClaim bounded to a persistentVolume. For more information, see Persistent Volume Claims in the Kubernetes documentation.

    *)
}
Sourceval context_ : string
Sourceval make : ?hostPath:??? -> ?emptyDir:??? -> ?secret:??? -> ?persistentVolumeClaim:??? -> name:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t ]) list ]) 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