PhysicalTable

sealed class PhysicalTable

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.

Inheritors

Types

Link copied to clipboard
data class CustomSql(val value: CustomSql) : PhysicalTable

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
data class S3Source(val value: S3Source) : PhysicalTable

A physical table type for as S3 data source.

Link copied to clipboard

Functions

Link copied to clipboard

Casts this PhysicalTable as a CustomSql and retrieves its aws.sdk.kotlin.services.quicksight.model.CustomSql value. Throws an exception if the PhysicalTable is not a CustomSql.

Link copied to clipboard

Casts this PhysicalTable as a CustomSql and retrieves its aws.sdk.kotlin.services.quicksight.model.CustomSql value. Returns null if the PhysicalTable is not a CustomSql.

Link copied to clipboard
Link copied to clipboard

Casts this PhysicalTable as a S3Source and retrieves its aws.sdk.kotlin.services.quicksight.model.S3Source value. Throws an exception if the PhysicalTable is not a S3Source.

Link copied to clipboard

Casts this PhysicalTable as a S3Source and retrieves its aws.sdk.kotlin.services.quicksight.model.S3Source value. Returns null if the PhysicalTable is not a S3Source.