Interface CfnDataSet.LogicalTableSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSet.LogicalTableSourceProperty.Jsii$Proxy
- Enclosing class:
- CfnDataSet
@Stability(Stable)
public static interface CfnDataSet.LogicalTableSourceProperty
extends software.amazon.jsii.JsiiSerializable
Information about the source of a logical table.
This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.
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.*;
LogicalTableSourceProperty logicalTableSourceProperty = LogicalTableSourceProperty.builder()
.dataSetArn("dataSetArn")
.joinInstruction(JoinInstructionProperty.builder()
.leftOperand("leftOperand")
.onClause("onClause")
.rightOperand("rightOperand")
.type("type")
// the properties below are optional
.leftJoinKeyProperties(JoinKeyPropertiesProperty.builder()
.uniqueKey(false)
.build())
.rightJoinKeyProperties(JoinKeyPropertiesProperty.builder()
.uniqueKey(false)
.build())
.build())
.physicalTableId("physicalTableId")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSet.LogicalTableSourcePropertystatic final classAn implementation forCfnDataSet.LogicalTableSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataSetArn
The Amazon Resource Number (ARN) of the parent dataset. -
getJoinInstruction
Specifies the result of a join of two logical tables. -
getPhysicalTableId
Physical table ID. -
builder
-