Interface CfnDataSetPropsMixin.RelationalTableProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSetPropsMixin.RelationalTableProperty.Jsii$Proxy
- Enclosing class:
CfnDataSetPropsMixin
@Stability(Stable)
public static interface CfnDataSetPropsMixin.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.cfnpropertymixins.services.quicksight.*;
RelationalTableProperty relationalTableProperty = RelationalTableProperty.builder()
.catalog("catalog")
.dataSourceArn("dataSourceArn")
.inputColumns(List.of(InputColumnProperty.builder()
.id("id")
.name("name")
.subType("subType")
.type("type")
.build()))
.name("name")
.schema("schema")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSetPropsMixin.RelationalTablePropertystatic final classAn implementation forCfnDataSetPropsMixin.RelationalTableProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe catalog associated with a table.default StringThe Amazon Resource Name (ARN) for the data source.default ObjectThe column schema of the table.default StringgetName()The name of the relational table.default StringThe schema name.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalog
The catalog associated with a table.- See Also:
-
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: '<'eitherIResolvableorCfnDataSetPropsMixin.InputColumnProperty>- See Also:
-
getName
The name of the relational table.- See Also:
-
getSchema
The schema name.This name applies to certain relational database engines.
- See Also:
-
builder
-