Module Values.JobManifestSource

Contains the configuration information for a job's manifest.

Sourcetype nonrec t = {
  1. spec : JobManifestSpec.t;
    (*

    Describes the format of the specified job's manifest. If the manifest is in CSV format, also describes the columns contained within the manifest.

    *)
  2. location : JobManifestLocation.t;
    (*

    Contains the information required to locate the specified job's manifest. Manifests can't be imported from directory buckets. For more information, see Directory buckets.

    *)
}
Sourceval context_ : string
Sourceval make : spec:JobManifestSpec.t -> location:JobManifestLocation.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of S3KeyArnString.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