PipelineConditionArgs

data class PipelineConditionArgs(val result: Output<String>? = null, val rules: Output<List<PipelineRuleDeclarationArgs>>? = null) : ConvertibleToJava<PipelineConditionArgs>

Represents information about condition.

Constructors

Link copied to clipboard
constructor(result: Output<String>? = null, rules: Output<List<PipelineRuleDeclarationArgs>>? = null)

Properties

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

The specified result for when the failure conditions are met, such as rolling back the stage

Link copied to clipboard
val rules: Output<List<PipelineRuleDeclarationArgs>>? = null

The rules that make up the condition.

Functions

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