Module Values.ThirdPartyJobSource

A response to a PollForThirdPartyJobs request returned by CodePipeline when there is a job to be worked on by a partner action.

Sourcetype nonrec t = {
  1. clientId : ClientId.t option;
    (*

    The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.

    *)
  2. jobId : JobId.t option;
    (*

    The identifier used to identify the job in CodePipeline.

    *)
}
Sourceval make : ?clientId:??? -> ?jobId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ClientId.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