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: