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")
// the properties below are optional
.id("id")
.subType("subType")
.build()))
.name("name")
// the properties below are optional
.catalog("catalog")
.schema("schema")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.RelationalTablePropertystatic final classAn 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.- See Also:
-
getInputColumns
The column schema of the table.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSet.InputColumnProperty>- See Also:
-
getName
The name of the relational table.- See Also:
-
getCatalog
The catalog associated with a table.- See Also:
-
getSchema
The schema name.This name applies to certain relational database engines.
- See Also:
-
builder
-