Dataflow Built In Transformation Filter Args
data class DataflowBuiltInTransformationFilterArgs(val description: Output<String>? = null, val expression: Output<String>, val inputs: Output<List<String>>, val type: Output<Either<String, FilterType>>? = null) : ConvertibleToJava<DataflowBuiltInTransformationFilterArgs>
Dataflow BuiltIn Transformation filter properties
Properties
Link copied to clipboard
A user provided optional description of the filter.
Link copied to clipboard
Condition to filter data. Can reference input fields with {n} where n is the index of the input field starting from 1. Example: $1 < 0 || $1 $2 (Assuming inputs section $1 and $2 are provided)
Link copied to clipboard
The type of dataflow operation.