public static interface CfnDataSet.PhysicalTableProperty
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") .build())) .dataSourceArn("dataSourceArn") .name("name") .sqlQuery("sqlQuery") .build()) .relationalTable(RelationalTableProperty.builder() .dataSourceArn("dataSourceArn") .inputColumns(List.of(InputColumnProperty.builder() .name("name") .type("type") .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") .build())) // the properties below are optional .uploadSettings(UploadSettingsProperty.builder() .containsHeader(false) .delimiter("delimiter") .format("format") .startFromRow(123) .textQualifier("textQualifier") .build()) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataSet.PhysicalTableProperty.Builder
A builder for
CfnDataSet.PhysicalTableProperty |
static class |
CfnDataSet.PhysicalTableProperty.Jsii$Proxy
An implementation for
CfnDataSet.PhysicalTableProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataSet.PhysicalTableProperty.Builder |
builder() |
default java.lang.Object |
getCustomSql()
A physical table type built from the results of the custom SQL query.
|
default java.lang.Object |
getRelationalTable()
A physical table type for relational data sources.
|
default java.lang.Object |
getS3Source()
A physical table type for as S3 data source.
|
default java.lang.Object getCustomSql()
default java.lang.Object getRelationalTable()
default java.lang.Object getS3Source()
static CfnDataSet.PhysicalTableProperty.Builder builder()