Module Values.CallbackOptionsSource

Configuration options for callback operations in durable executions, including timeout settings and retry behavior.

Sourcetype nonrec t = {
  1. timeoutSeconds : DurationSeconds.t option;
    (*

    The timeout for the callback operation in seconds. If not specified or set to 0, the callback has no timeout.

    *)
  2. heartbeatTimeoutSeconds : DurationSeconds.t option;
    (*

    The heartbeat timeout for the callback operation, in seconds. If not specified or set to 0, heartbeat timeout is disabled.

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