Module Values.JobManifestSpecSource

Describes the format of a manifest. If the manifest is in CSV format, also describes the columns contained within the manifest.

Sourcetype nonrec t = {
  1. format : JobManifestFormat.t;
    (*

    Indicates which of the available formats the specified manifest uses.

    *)
  2. fields : JobManifestFieldList.t option;
    (*

    If the specified manifest object is in the S3BatchOperations_CSV_20180820 format, this element describes which columns contain the required data.

    *)
}
Sourceval context_ : string
Sourceval make : ?fields:??? -> format:JobManifestFormat.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] 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