Module Values.RetryConfigurationSource

The retry configuration specifies automatic retry for a failed stage, along with the configured retry mode.

Sourcetype nonrec t = {
  1. retryMode : StageRetryMode.t option;
    (*

    The method that you want to configure for automatic stage retry on stage failure. You can specify to retry only failed action in the stage or all actions in the stage.

    *)
}
Sourceval make : ?retryMode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) 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