RetryPolicyArgs

data class RetryPolicyArgs(val count: Output<Any>? = null, val intervalInSeconds: Output<Int>? = null) : ConvertibleToJava<RetryPolicyArgs>

Execution policy for an activity.

Constructors

Link copied to clipboard
constructor(count: Output<Any>? = null, intervalInSeconds: Output<Int>? = null)

Properties

Link copied to clipboard
val count: Output<Any>? = null

Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.

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

Interval between retries in seconds. Default is 30.

Functions

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