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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopicV2.DataSetRelationPropertystatic final classAn implementation forCfnTopicV2.DataSetRelationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getLeft()Returns union: eitherIResolvableorCfnTopicV2.DataSetRelationEndpointPropertygetRight()Returns union: eitherIResolvableorCfnTopicV2.DataSetRelationEndpointPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLeft
Returns union: eitherIResolvableorCfnTopicV2.DataSetRelationEndpointProperty- See Also:
-
getRight
Returns union: eitherIResolvableorCfnTopicV2.DataSetRelationEndpointProperty- See Also:
-
builder
-