Module Values.PutThirdPartyJobFailureResultInputSource

Represents the input of a PutThirdPartyJobFailureResult action.

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

    The ID of the job that failed. 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. failureDetails : FailureDetails.t;
    (*

    Represents information about failure details.

    *)
}
Sourceval context_ : string
Sourceval make : jobId:ThirdPartyJobId.t -> clientToken:ClientToken.t -> failureDetails:FailureDetails.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ThirdPartyJobId.t | `Structure of (string * [> `Enum of string | `String of Message.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