public static interface CfnDataSet.RelationalTableProperty
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.*; RelationalTableProperty relationalTableProperty = 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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataSet.RelationalTableProperty.Builder
A builder for
CfnDataSet.RelationalTableProperty |
static class |
CfnDataSet.RelationalTableProperty.Jsii$Proxy
An implementation for
CfnDataSet.RelationalTableProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataSet.RelationalTableProperty.Builder |
builder() |
default java.lang.String |
getCatalog()
`CfnDataSet.RelationalTableProperty.Catalog`.
|
java.lang.String |
getDataSourceArn()
The Amazon Resource Name (ARN) for the data source.
|
java.lang.Object |
getInputColumns()
The column schema of the table.
|
java.lang.String |
getName()
The name of the relational table.
|
default java.lang.String |
getSchema()
The schema name.
|
java.lang.String getDataSourceArn()
java.lang.Object getInputColumns()
java.lang.String getName()
default java.lang.String getCatalog()
default java.lang.String getSchema()
This name applies to certain relational database engines.
static CfnDataSet.RelationalTableProperty.Builder builder()