DataFlowArgs

data class DataFlowArgs(val destinations: Output<List<String>>? = null, val streams: Output<List<Either<String, KnownDataFlowStreams>>>? = null) : ConvertibleToJava<DataFlowArgs>

Definition of which streams are sent to which destinations.

Constructors

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

Properties

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

List of destinations for this data flow.

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

List of streams for this data flow.

Functions

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