Module Values.RetryPolicySource

A RetryPolicy object that includes information about the retry policy settings.

Sourcetype nonrec t = {
  1. maximumRetryAttempts : MaximumRetryAttempts.t option;
    (*

    The maximum number of retry attempts to make before the request fails. Retry attempts continue until either the maximum number of attempts is made or until the duration of the MaximumEventAgeInSeconds is met.

    *)
  2. maximumEventAgeInSeconds : MaximumEventAgeInSeconds.t option;
    (*

    The maximum amount of time, in seconds, to continue to make retry attempts.

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