public static interface CfnDataSet.LogicalTableSourceProperty
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 java.lang.String |
getDataSetArn()
The Amazon Resource Number (ARN) of the parent dataset.
|
default java.lang.Object |
getJoinInstruction()
Specifies the result of a join of two logical tables.
|
default java.lang.String |
getPhysicalTableId()
Physical table ID.
|
default java.lang.String getDataSetArn()
default java.lang.Object getJoinInstruction()
default java.lang.String getPhysicalTableId()
static CfnDataSet.LogicalTableSourceProperty.Builder builder()