Module Values.PutThirdPartyJobSuccessResultInputSource

Represents the input of a PutThirdPartyJobSuccessResult action.

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

    The ID of the job that successfully completed. This is the same ID returned from PollForThirdPartyJobs.

    *)
  2. clientToken : ClientToken.t;
    (*

    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.

    *)
  3. currentRevision : CurrentRevision.t option;
    (*

    Represents information about a current revision.

    *)
  4. continuationToken : ContinuationToken.t option;
    (*

    A token generated by a job worker, such as a CodeDeploy deployment ID, that a successful job provides to identify a partner action in progress. Future jobs use this token to identify the running instance of the action. It can be reused to return more information about the progress of the partner action. When the action is complete, no continuation token should be supplied.

    *)
  5. executionDetails : ExecutionDetails.t option;
    (*

    The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.

    *)
}
Sourceval context_ : string
Sourceval make : ?currentRevision:??? -> ?continuationToken:??? -> ?executionDetails:??? -> jobId:ThirdPartyJobId.t -> clientToken:ClientToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ThirdPartyJobId.t | `Structure of (string * [> `Integer of Percentage.t | `String of Revision.t | `Timestamp of Time.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