MappingDataFlowArgs

data class MappingDataFlowArgs(val annotations: Output<List<Any>>? = null, val description: Output<String>? = null, val folder: Output<DataFlowFolderArgs>? = null, val script: Output<String>? = null, val scriptLines: Output<List<String>>? = null, val sinks: Output<List<DataFlowSinkArgs>>? = null, val sources: Output<List<DataFlowSourceArgs>>? = null, val transformations: Output<List<TransformationArgs>>? = null, val type: Output<String>) : ConvertibleToJava<MappingDataFlowArgs>

Mapping data flow.

Constructors

Link copied to clipboard
constructor(annotations: Output<List<Any>>? = null, description: Output<String>? = null, folder: Output<DataFlowFolderArgs>? = null, script: Output<String>? = null, scriptLines: Output<List<String>>? = null, sinks: Output<List<DataFlowSinkArgs>>? = null, sources: Output<List<DataFlowSourceArgs>>? = null, transformations: Output<List<TransformationArgs>>? = null, type: Output<String>)

Properties

Link copied to clipboard
val annotations: Output<List<Any>>? = null

List of tags that can be used for describing the data flow.

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

The description of the data flow.

Link copied to clipboard
val folder: Output<DataFlowFolderArgs>? = null

The folder that this data flow is in. If not specified, Data flow will appear at the root level.

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

DataFlow script.

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

Data flow script lines.

Link copied to clipboard
val sinks: Output<List<DataFlowSinkArgs>>? = null

List of sinks in data flow.

Link copied to clipboard
val sources: Output<List<DataFlowSourceArgs>>? = null

List of sources in data flow.

Link copied to clipboard

List of transformations in data flow.

Link copied to clipboard
val type: Output<String>

Type of data flow. Expected value is 'MappingDataFlow'.

Functions

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