Interface CfnDataSet.ImportTableOperationSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.ImportTableOperationSourceProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.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.services.quicksight.*;
ImportTableOperationSourceProperty importTableOperationSourceProperty = ImportTableOperationSourceProperty.builder()
.sourceTableId("sourceTableId")
// the properties below are optional
.columnIdMappings(List.of(DataSetColumnIdMappingProperty.builder()
.sourceColumnId("sourceColumnId")
.targetColumnId("targetColumnId")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.ImportTableOperationSourcePropertystatic final classAn implementation forCfnDataSet.ImportTableOperationSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceTableId
The identifier of the source table to import data from.- See Also:
-
getColumnIdMappings
The mappings between source column identifiers and target column identifiers during the import.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDataSet.DataSetColumnIdMappingProperty>- See Also:
-
builder
-