Interface CfnDataSet.RelationalTableProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.RelationalTableProperty.Jsii$Proxy
- Enclosing class:
- CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.RelationalTableProperty
extends software.amazon.jsii.JsiiSerializable
A physical table type for relational data sources.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSet.RelationalTableProperty
static final class
An implementation forCfnDataSet.RelationalTableProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataSourceArn
The Amazon Resource Name (ARN) for the data source. -
getInputColumns
The column schema of the table. -
getName
The name of the relational table. -
getCatalog
CfnDataSet.RelationalTableProperty.Catalog
. -
getSchema
The schema name.This name applies to certain relational database engines.
-
builder
-