RetryPolicyArgs

data class RetryPolicyArgs(val retryCount: Output<Int>? = null, val retryInterval: Output<String>? = null, val retryType: Output<RetryType>? = null) : ConvertibleToJava<RetryPolicyArgs>

Constructors

Link copied to clipboard
constructor(retryCount: Output<Int>? = null, retryInterval: Output<String>? = null, retryType: Output<RetryType>? = null)

Properties

Link copied to clipboard
val retryCount: Output<Int>? = null

Gets or sets the number of times a retry should be attempted.

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

Gets or sets the retry interval between retries, specify duration in ISO 8601 format.

Link copied to clipboard
val retryType: Output<RetryType>? = null

Gets or sets the retry strategy to be used.

Functions

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