OutputArgs

data class OutputArgs(val datasource: Output<Any>? = null, val name: Output<String>? = null, val serialization: Output<Any>? = null) : ConvertibleToJava<OutputArgs>

An output object, containing all information associated with the named output. All outputs are contained under a streaming job.

Constructors

Link copied to clipboard
constructor(datasource: Output<Any>? = null, name: Output<String>? = null, serialization: Output<Any>? = null)

Properties

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

Describes the data source that output will be written to. Required on PUT (CreateOrReplace) requests.

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

Resource name

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

Describes how data from an input is serialized or how data is serialized when written to an output. Required on PUT (CreateOrReplace) requests.

Functions

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