Data Flow Args
data class DataFlowArgs(val builtInTransform: Output<String>? = null, val destinations: Output<List<String>>? = null, val outputStream: Output<String>? = null, val streams: Output<List<Either<String, KnownDataFlowStreams>>>? = null, val transformKql: Output<String>? = null) : ConvertibleToJava<DataFlowArgs>
Definition of which streams are sent to which destinations.
Properties
Link copied to clipboard
The builtIn transform to transform stream data
Link copied to clipboard
List of destinations for this data flow.
Link copied to clipboard
The output stream of the transform. Only required if the transform changes data to a different stream.
Link copied to clipboard
List of streams for this data flow.
Link copied to clipboard
The KQL query to transform stream data.