Module Values_2.SendPipelineExecutionStepFailureRequestSource

Notifies the pipeline that the execution of a callback step failed, along with a message describing why. When a callback step is run, the pipeline generates a callback token and includes the token in a message sent to Amazon Simple Queue Service (Amazon SQS).

Sourcetype nonrec t = {
  1. callbackToken : Values_0.CallbackToken.t;
    (*

    The pipeline generated token from the Amazon SQS queue.

    *)
  2. failureReason : Values_0.String256.t option;
    (*

    A message describing why the step failed.

    *)
  3. clientRequestToken : Values_1.IdempotencyToken.t option;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time.

    *)
}
Sourceval context_ : string
Sourceval make : ?failureReason:??? -> ?clientRequestToken:??? -> callbackToken:Values_0.CallbackToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.CallbackToken.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