Module Values.RetryConfigInputSource

This structure contains information about the canary's retry configuration. The default account level concurrent execution limit from Lambda is 1000. When you have more than 1000 canaries, it's possible there are more than 1000 Lambda invocations due to retries and the console might hang. For more information on the Lambda execution limit, see Understanding Lambda function scaling. For canary with MaxRetries = 2, you need to set the CanaryRunConfigInput.TimeoutInSeconds to less than 600 seconds to avoid validation errors.

Sourcetype nonrec t = {
  1. maxRetries : MaxRetries.t;
    (*

    The maximum number of retries. The value must be less than or equal to 2.

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