@Stability(value=Stable)
public static interface CfnDataSet.RelationalTableProperty
extends software.amazon.jsii.JsiiSerializable
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 String |
getCatalog()
`CfnDataSet.RelationalTableProperty.Catalog`.
|
String |
getDataSourceArn()
The Amazon Resource Name (ARN) for the data source.
|
Object |
getInputColumns()
The column schema of the table.
|
String |
getName()
The name of the relational table.
|
default String |
getSchema()
The schema name.
|
@Stability(value=Stable) @NotNull String getDataSourceArn()
@Stability(value=Stable) @NotNull Object getInputColumns()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default String getCatalog()
@Stability(value=Stable) @Nullable default String getSchema()
This name applies to certain relational database engines.
@Stability(value=Stable) static CfnDataSet.RelationalTableProperty.Builder builder()
Copyright © 2022. All rights reserved.