Values.TaskScheduledEventDetailsSourceContains details about a task scheduled during an execution.
type nonrec t = {resourceType : Name.t option;The service name of the resource in a task state.
*)resource : Name.t option;The action of the resource called by a task state.
*)region : Name.t option;The region of the scheduled task
*)parameters : ConnectorParameters.t option;The JSON data passed to the resource referenced in a task state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
*)timeoutInSeconds : TimeoutInSeconds.t option;The maximum allowed duration of the task.
*)heartbeatInSeconds : TimeoutInSeconds.t option;The maximum allowed duration between two heartbeats for the task.
*)taskCredentials : TaskCredentials.t option;The credentials that Step Functions uses for the task.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Long of TimeoutInSeconds.t
| `String of Name.t
| `Structure of (string * [> `String of LongArn.t ]) list ])
list ]