Interface CfnDataSet.SourceTableProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSet.SourceTableProperty.Jsii$Proxy
Enclosing class:
CfnDataSet

@Stability(Stable) public static interface CfnDataSet.SourceTableProperty extends software.amazon.jsii.JsiiSerializable
A source table that provides initial data from either a physical table or parent dataset.

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.*;
 SourceTableProperty sourceTableProperty = SourceTableProperty.builder()
         .dataSet(ParentDataSetProperty.builder()
                 .dataSetArn("dataSetArn")
                 .inputColumns(List.of(InputColumnProperty.builder()
                         .name("name")
                         .type("type")
                         // the properties below are optional
                         .id("id")
                         .subType("subType")
                         .build()))
                 .build())
         .physicalTableId("physicalTableId")
         .build();
 

See Also: