interface LogicalTableSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.LogicalTableSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_LogicalTableSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.LogicalTableSourceProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.LogicalTableSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const logicalTableSourceProperty: quicksight_mixins.CfnDataSetPropsMixin.LogicalTableSourceProperty = {
dataSetArn: 'dataSetArn',
joinInstruction: {
leftJoinKeyProperties: {
uniqueKey: false,
},
leftOperand: 'leftOperand',
onClause: 'onClause',
rightJoinKeyProperties: {
uniqueKey: false,
},
rightOperand: 'rightOperand',
type: 'type',
},
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.

.NET
Go
Java
Python
TypeScript