Interface CfnDataSet.PhysicalTableProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSet.PhysicalTableProperty.Jsii$Proxy
Enclosing class:
CfnDataSet

@Stability(Stable) public static interface CfnDataSet.PhysicalTableProperty extends software.amazon.jsii.JsiiSerializable
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.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.quicksight.*;
 PhysicalTableProperty physicalTableProperty = PhysicalTableProperty.builder()
         .customSql(CustomSqlProperty.builder()
                 .columns(List.of(InputColumnProperty.builder()
                         .name("name")
                         .type("type")
                         // the properties below are optional
                         .subType("subType")
                         .build()))
                 .dataSourceArn("dataSourceArn")
                 .name("name")
                 .sqlQuery("sqlQuery")
                 .build())
         .relationalTable(RelationalTableProperty.builder()
                 .dataSourceArn("dataSourceArn")
                 .inputColumns(List.of(InputColumnProperty.builder()
                         .name("name")
                         .type("type")
                         // the properties below are optional
                         .subType("subType")
                         .build()))
                 .name("name")
                 // the properties below are optional
                 .catalog("catalog")
                 .schema("schema")
                 .build())
         .s3Source(S3SourceProperty.builder()
                 .dataSourceArn("dataSourceArn")
                 .inputColumns(List.of(InputColumnProperty.builder()
                         .name("name")
                         .type("type")
                         // the properties below are optional
                         .subType("subType")
                         .build()))
                 // the properties below are optional
                 .uploadSettings(UploadSettingsProperty.builder()
                         .containsHeader(false)
                         .delimiter("delimiter")
                         .format("format")
                         .startFromRow(123)
                         .textQualifier("textQualifier")
                         .build())
                 .build())
         .build();
 

See Also: