Interface CfnTopicV2.DataSetRelationProperty

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

@Stability(Stable) public static interface CfnTopicV2.DataSetRelationProperty extends software.amazon.jsii.JsiiSerializable
A relation between two datasets referenced by a V2 (SEMANTIC_VIEW) topic.

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.*;
 DataSetRelationProperty dataSetRelationProperty = DataSetRelationProperty.builder()
         .left(DataSetRelationEndpointProperty.builder()
                 .columnNames(List.of("columnNames"))
                 .dataSetArn("dataSetArn")
                 .build())
         .right(DataSetRelationEndpointProperty.builder()
                 .columnNames(List.of("columnNames"))
                 .dataSetArn("dataSetArn")
                 .build())
         .build();
 

See Also: