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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSetPropsMixin.ImportTableOperationSourcePropertystatic final classAn implementation forCfnDataSetPropsMixin.ImportTableOperationSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColumnIdMappings
The mappings between source column identifiers and target column identifiers during the import.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSetPropsMixin.DataSetColumnIdMappingProperty>- See Also:
-
getSourceTableId
The identifier of the source table to import data from.- See Also:
-
builder
-