Values.DurableConfigSourceConfiguration settings for durable functions, including execution timeout and retention period for execution history.
type nonrec t = {retentionPeriodInDays : RetentionPeriodInDays.t option;The number of days to retain execution history after a durable execution completes. After this period, execution history is no longer available through the GetDurableExecutionHistory API.
*)executionTimeout : ExecutionTimeout.t option;The maximum time (in seconds) that a durable execution can run before timing out. This timeout applies to the entire durable execution, not individual function invocations.
*)}val to_value :
t ->
[> `Structure of (string * [> `Integer of RetentionPeriodInDays.t ]) list ]