ActivityPolicyResponse

data class ActivityPolicyResponse(val retry: Any? = null, val retryIntervalInSeconds: Int? = null, val secureInput: Boolean? = null, val secureOutput: Boolean? = null, val timeout: Any? = null)

Execution policy for an activity.

Constructors

Link copied to clipboard
constructor(retry: Any? = null, retryIntervalInSeconds: Int? = null, secureInput: Boolean? = null, secureOutput: Boolean? = null, timeout: Any? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val retry: Any? = null

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

Link copied to clipboard

Interval between each retry attempt (in seconds). The default is 30 sec.

Link copied to clipboard
val secureInput: Boolean? = null

When set to true, Input from activity is considered as secure and will not be logged to monitoring.

Link copied to clipboard
val secureOutput: Boolean? = null

When set to true, Output from activity is considered as secure and will not be logged to monitoring.

Link copied to clipboard
val timeout: Any? = null

Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|(0-9)):(60|(0-9)).