Interface CfnDataSet.ImportTableOperationProperty

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

@Stability(Stable) public static interface CfnDataSet.ImportTableOperationProperty extends software.amazon.jsii.JsiiSerializable
A transform operation that imports data from a source table.

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.*;
 ImportTableOperationProperty importTableOperationProperty = ImportTableOperationProperty.builder()
         .alias("alias")
         .source(ImportTableOperationSourceProperty.builder()
                 .sourceTableId("sourceTableId")
                 // the properties below are optional
                 .columnIdMappings(List.of(DataSetColumnIdMappingProperty.builder()
                         .sourceColumnId("sourceColumnId")
                         .targetColumnId("targetColumnId")
                         .build()))
                 .build())
         .build();
 

See Also: