ScheduleRetryPolicyArgs

data class ScheduleRetryPolicyArgs(val maximumEventAgeInSeconds: Output<Double>? = null, val maximumRetryAttempts: Output<Double>? = null) : ConvertibleToJava<ScheduleRetryPolicyArgs>

A RetryPolicy object that includes information about the retry policy settings.

Constructors

Link copied to clipboard
constructor(maximumEventAgeInSeconds: Output<Double>? = null, maximumRetryAttempts: Output<Double>? = null)

Properties

Link copied to clipboard
val maximumEventAgeInSeconds: Output<Double>? = null

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

Link copied to clipboard
val maximumRetryAttempts: Output<Double>? = null

The maximum number of retry attempts to make before the request fails. Retry attempts with exponential backoff continue until either the maximum number of attempts is made or until the duration of the MaximumEventAgeInSeconds is reached.

Functions

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