Module Values.BatchRetryStrategySource

The retry strategy that's associated with a job. For more information, see Automated job retries in the Batch User Guide.

Sourcetype nonrec t = {
  1. attempts : BatchRetryAttempts.t option;
    (*

    The number of times to move a job to the RUNNABLE status. If the value of attempts is greater than one, the job is retried on failure the same number of attempts as the value.

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