RuleRetryPolicy

data class RuleRetryPolicy(val maximumEventAgeInSeconds: Int? = null, val maximumRetryAttempts: Int? = null)

Constructors

Link copied to clipboard
constructor(maximumEventAgeInSeconds: Int? = null, maximumRetryAttempts: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard

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.