DataFlowArgs

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.

Constructors

Link copied to clipboard
constructor(builtInTransform: Output<String>? = null, destinations: Output<List<String>>? = null, outputStream: Output<String>? = null, streams: Output<List<Either<String, KnownDataFlowStreams>>>? = null, transformKql: Output<String>? = null)

Properties

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

The builtIn transform to transform stream data

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

List of destinations for this data flow.

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

The output stream of the transform. Only required if the transform changes data to a different stream.

Link copied to clipboard
val streams: Output<List<Either<String, KnownDataFlowStreams>>>? = null

List of streams for this data flow.

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

The KQL query to transform stream data.

Functions

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