DataSetPhysicalTable

data class DataSetPhysicalTable(val customSql: DataSetCustomSql? = null, val relationalTable: DataSetRelationalTable? = null, val s3Source: DataSetS3Source? = null)

A view of a data source that contains information about the shape of the data in the underlying source. This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.

Constructors

Link copied to clipboard
constructor(customSql: DataSetCustomSql? = null, relationalTable: DataSetRelationalTable? = null, s3Source: DataSetS3Source? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A physical table type built from the results of the custom SQL query.

Link copied to clipboard

A physical table type for relational data sources.

Link copied to clipboard

A physical table type for as S3 data source.