DatasetArgs

data class DatasetArgs(val dataPoints: Output<List<DataPointArgs>>? = null, val datasetConfiguration: Output<String>? = null, val name: Output<String>, val topic: Output<TopicArgs>? = null) : ConvertibleToJava<DatasetArgs>

Defines the dataset properties.

Constructors

Link copied to clipboard
constructor(dataPoints: Output<List<DataPointArgs>>? = null, datasetConfiguration: Output<String>? = null, name: Output<String>, topic: Output<TopicArgs>? = null)

Properties

Link copied to clipboard
val dataPoints: Output<List<DataPointArgs>>? = null

Array of data points that are part of the dataset. Each data point can have per-data point configuration.

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

Stringified JSON that contains connector-specific JSON string that describes configuration for the specific dataset.

Link copied to clipboard
val name: Output<String>

Name of the dataset.

Link copied to clipboard
val topic: Output<TopicArgs>? = null

Object that describes the topic information for the specific dataset.

Functions

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