Module Values.AcknowledgeJobInputSource

Represents the input of an AcknowledgeJob action.

Sourcetype nonrec t = {
  1. jobId : JobId.t;
    (*

    The unique system-generated ID of the job for which you want to confirm receipt.

    *)
  2. nonce : Nonce.t;
    (*

    A system-generated random number that CodePipeline uses to ensure that the job is being worked on by only one job worker. Get this number from the response of the PollForJobs request that returned this job.

    *)
}
Sourceval context_ : string
Sourceval make : jobId:JobId.t -> nonce:Nonce.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of JobId.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