Values.SendWorkflowStepStateRequestSourceSends 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.
type nonrec t = {workflowId : WorkflowId.t;A unique identifier for the workflow.
*)executionId : ExecutionId.t;A unique identifier for the execution of a workflow.
*)token : CallbackToken.t;Used to distinguish between multiple callbacks for multiple Lambda steps within the same execution.
*)status : CustomStepStatus.t;Indicates whether the specified step succeeded or failed.
*)}val make :
workflowId:WorkflowId.t ->
executionId:ExecutionId.t ->
token:CallbackToken.t ->
status:CustomStepStatus.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of WorkflowId.t ]) list ]