Interface CfnDataSetPropsMixin.ImportTableOperationSourceProperty

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

@Stability(Stable) public static interface CfnDataSetPropsMixin.ImportTableOperationSourceProperty extends software.amazon.jsii.JsiiSerializable
Specifies the source table and column mappings for an import table operation.

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.*;
 ImportTableOperationSourceProperty importTableOperationSourceProperty = ImportTableOperationSourceProperty.builder()
         .columnIdMappings(List.of(DataSetColumnIdMappingProperty.builder()
                 .sourceColumnId("sourceColumnId")
                 .targetColumnId("targetColumnId")
                 .build()))
         .sourceTableId("sourceTableId")
         .build();
 

See Also: