interface LogicalTableSourceProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.LogicalTableSourceProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.LogicalTableSourceProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.LogicalTableSourceProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDataSet » LogicalTableSourceProperty |
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 * as quicksight from '@aws-cdk/aws-quicksight';
const logicalTableSourceProperty: quicksight.CfnDataSet.LogicalTableSourceProperty = {
dataSetArn: 'dataSetArn',
joinInstruction: {
leftOperand: 'leftOperand',
onClause: 'onClause',
rightOperand: 'rightOperand',
type: 'type',
// the properties below are optional
leftJoinKeyProperties: {
uniqueKey: false,
},
rightJoinKeyProperties: {
uniqueKey: false,
},
},
physicalTableId: 'physicalTableId',
};
Properties
Name | Type | Description |
---|---|---|
data | string | The Amazon Resource Number (ARN) of the parent dataset. |
join | IResolvable | Join | Specifies the result of a join of two logical tables. |
physical | string | Physical table ID. |
dataSetArn?
Type:
string
(optional)
The Amazon Resource Number (ARN) of the parent dataset.
joinInstruction?
Type:
IResolvable
|
Join
(optional)
Specifies the result of a join of two logical tables.
physicalTableId?
Type:
string
(optional)
Physical table ID.