Module Values.SendWorkflowStepStateRequestSource

Sends a callback for asynchronous custom steps. The ExecutionId, WorkflowId, and Token are passed to the target resource during execution of a custom step of a workflow. You must include those with their callback as well as providing a status.

Sourcetype nonrec t = {
  1. workflowId : WorkflowId.t;
    (*

    A unique identifier for the workflow.

    *)
  2. executionId : ExecutionId.t;
    (*

    A unique identifier for the execution of a workflow.

    *)
  3. token : CallbackToken.t;
    (*

    Used to distinguish between multiple callbacks for multiple Lambda steps within the same execution.

    *)
  4. status : CustomStepStatus.t;
    (*

    Indicates whether the specified step succeeded or failed.

    *)
}
Sourceval context_ : string
Sourceval make : workflowId:WorkflowId.t -> executionId:ExecutionId.t -> token:CallbackToken.t -> status:CustomStepStatus.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of WorkflowId.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