PipelineMathArgs

data class PipelineMathArgs(val attribute: Output<String>, val math: Output<String>, val name: Output<String>, val next: Output<String>? = null) : ConvertibleToJava<PipelineMathArgs>

Constructors

Link copied to clipboard
constructor(attribute: Output<String>, math: Output<String>, name: Output<String>, next: Output<String>? = null)

Properties

Link copied to clipboard
val attribute: Output<String>

The name of the attribute that contains the result of the math operation.

Link copied to clipboard
val math: Output<String>

An expression that uses one or more existing attributes and must return an integer value.

Link copied to clipboard
val name: Output<String>

The name of the 'math' activity.

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

The next activity in the pipeline.

Functions

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