Module Values.BatchJobIdentifierSource

Identifies a specific batch job.

Sourcetype nonrec t = {
  1. fileBatchJobIdentifier : FileBatchJobIdentifier.t option;
    (*

    Specifies a file associated with a specific batch job.

    *)
  2. restartBatchJobIdentifier : RestartBatchJobIdentifier.t option;
    (*

    Specifies the required information for restart, including executionId and JobStepRestartMarker.

    *)
  3. s3BatchJobIdentifier : S3BatchJobIdentifier.t option;
    (*

    Specifies an Amazon S3 location that identifies the batch jobs that you want to run. Use this identifier to run ad hoc batch jobs.

    *)
  4. scriptBatchJobIdentifier : ScriptBatchJobIdentifier.t option;
    (*

    A batch job identifier in which the batch job to run is identified by the script name.

    *)
}
Sourceval make : ?fileBatchJobIdentifier:??? -> ?restartBatchJobIdentifier:??? -> ?s3BatchJobIdentifier:??? -> ?scriptBatchJobIdentifier:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t ]) list ]) 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