@Stability(value=Stable)
public static interface CfnDataSet.LogicalTableSourceProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSet.LogicalTableSourceProperty.Builder
A builder for
CfnDataSet.LogicalTableSourceProperty |
static class |
CfnDataSet.LogicalTableSourceProperty.Jsii$Proxy
An implementation for
CfnDataSet.LogicalTableSourceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSet.LogicalTableSourceProperty.Builder |
builder() |
default String |
getDataSetArn()
The Amazon Resource Number (ARN) of the parent dataset.
|
default Object |
getJoinInstruction()
Specifies the result of a join of two logical tables.
|
default String |
getPhysicalTableId()
Physical table ID.
|
@Stability(value=Stable) @Nullable default String getDataSetArn()
@Stability(value=Stable) @Nullable default Object getJoinInstruction()
@Stability(value=Stable) @Nullable default String getPhysicalTableId()
@Stability(value=Stable) static CfnDataSet.LogicalTableSourceProperty.Builder builder()
Copyright © 2022. All rights reserved.