Interface CfnDataSet.DestinationTableProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.DestinationTableProperty.Jsii$Proxy
- Enclosing class:
CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.DestinationTableProperty
extends software.amazon.jsii.JsiiSerializable
Defines a destination table in data preparation that receives the final transformed data.
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.*;
DestinationTableProperty destinationTableProperty = DestinationTableProperty.builder()
.alias("alias")
.source(DestinationTableSourceProperty.builder()
.transformOperationId("transformOperationId")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.DestinationTablePropertystatic final classAn implementation forCfnDataSet.DestinationTableProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlias
Alias for the destination table.- See Also:
-
getSource
The source configuration that specifies which transform operation provides data to this destination table.Returns union: either
IResolvableorCfnDataSet.DestinationTableSourceProperty- See Also:
-
builder
-