StreamInputIotHubSerializationArgs

data class StreamInputIotHubSerializationArgs(val encoding: Output<String>? = null, val fieldDelimiter: Output<String>? = null, val type: Output<String>) : ConvertibleToJava<StreamInputIotHubSerializationArgs>

Constructors

Link copied to clipboard
constructor(encoding: Output<String>? = null, fieldDelimiter: Output<String>? = null, type: Output<String>)

Properties

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

The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to UTF8.

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

The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are (space), , (comma), (tab), | (pipe) and ;.

Link copied to clipboard
val type: Output<String>

The serialization format used for incoming data streams. Possible values are Avro, Csv and Json.

Functions

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