RetryPolicyArgs

data class RetryPolicyArgs(val maximumBackoff: Output<String>? = null, val minimumBackoff: Output<String>? = null) : ConvertibleToJava<RetryPolicyArgs>

A policy that specifies how Cloud Pub/Sub retries message delivery. Retry delay will be exponential based on provided minimum and maximum backoffs. https://en.wikipedia.org/wiki/Exponential_backoff. RetryPolicy will be triggered on NACKs or acknowledgement deadline exceeded events for a given message. Retry Policy is implemented on a best effort basis. At times, the delay between consecutive deliveries may not match the configuration. That is, delay can be more or less than configured backoff.

Constructors

Link copied to clipboard
fun RetryPolicyArgs(maximumBackoff: Output<String>? = null, minimumBackoff: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): RetryPolicyArgs

Properties

Link copied to clipboard
val maximumBackoff: Output<String>? = null

The maximum delay between consecutive deliveries of a given message. Value should be between 0 and 600 seconds. Defaults to 600 seconds.

Link copied to clipboard
val minimumBackoff: Output<String>? = null

The minimum delay between consecutive deliveries of a given message. Value should be between 0 and 600 seconds. Defaults to 10 seconds.