Module Values.DescribeJobRunRequestSource

Represents one run of a DataBrew job.

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

    The name of the job being processed during this run.

    *)
  2. runId : JobRunId.t;
    (*

    The unique identifier of the job run.

    *)
}
Sourceval context_ : string
Sourceval make : name:JobName.t -> runId:JobRunId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of JobName.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