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
                 .subType("subType")
                 .build()))
         .name("name")
         // the properties below are optional
         .catalog("catalog")
         .schema("schema")
         .build();
 

See Also: