Values.ExecutionSourceInformation about a durable execution.
type nonrec t = {durableExecutionArn : DurableExecutionArn.t option;The Amazon Resource Name (ARN) of the durable execution, if this execution is a durable execution.
*)durableExecutionName : DurableExecutionName.t option;The unique name of the durable execution, if one was provided when the execution was started.
*)functionArn : NameSpacedFunctionArn.t option;The Amazon Resource Name (ARN) of the Lambda function.
*)status : ExecutionStatus.t option;The current status of the durable execution.
*)startTimestamp : ExecutionTimestamp.t option;The date and time when the durable execution started, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
*)endTimestamp : ExecutionTimestamp.t option;The date and time when the durable execution ended, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of DurableExecutionArn.t
| `Timestamp of ExecutionTimestamp.t ])
list ]