Module Values.DurableConfigSource

Configuration settings for durable functions, including execution timeout and retention period for execution history.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. 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.

    *)
}
Sourceval make : ?retentionPeriodInDays:??? -> ?executionTimeout:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of RetentionPeriodInDays.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