PipelineRetryPolicy

data class PipelineRetryPolicy(val maxAttempts: Int? = null, val maxRetryDelay: String? = null, val minRetryDelay: String? = null)

Constructors

Link copied to clipboard
constructor(maxAttempts: Int? = null, maxRetryDelay: String? = null, minRetryDelay: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val maxAttempts: Int? = null

The maximum number of delivery attempts for any message. The value must be between 1 and 100. The default value for this field is 5.

Link copied to clipboard
val maxRetryDelay: String? = null

The maximum amount of seconds to wait between retry attempts. The value must be between 1 and 600. The default value for this field is 60.

Link copied to clipboard
val minRetryDelay: String? = null

The minimum amount of seconds to wait between retry attempts. The value must be between 1 and 600. The default value for this field is 5.