Module Values.RetryPolicySource

The retry policy to use for a job run.

Sourcetype nonrec t = {
  1. maxAttempts : AttemptNumber.t option;
    (*

    Maximum number of attempts for the job run. This parameter is only applicable for BATCH mode.

    *)
  2. maxFailedAttemptsPerHour : RetryPolicyMaxFailedAttemptsPerHourInteger.t option;
    (*

    Maximum number of failed attempts per hour. This [arameter is only applicable for STREAMING mode.

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