aws-cdk-lib.aws_quicksight.CfnDataSet.LogicalTableSourceProperty

interface LogicalTableSourceProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDataSet.LogicalTableSourceProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_LogicalTableSourceProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDataSet.LogicalTableSourceProperty
Pythonaws_cdk.aws_quicksight.CfnDataSet.LogicalTableSourceProperty
TypeScript aws-cdk-lib » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
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

NameTypeDescription
dataSetArn?stringThe Amazon Resource Number (ARN) of the parent dataset.
joinInstruction?IResolvable | JoinInstructionPropertySpecifies the result of a join of two logical tables.
physicalTableId?stringPhysical table ID.

dataSetArn?

Type: string (optional)

The Amazon Resource Number (ARN) of the parent dataset.


joinInstruction?

Type: IResolvable | JoinInstructionProperty (optional)

Specifies the result of a join of two logical tables.


physicalTableId?

Type: string (optional)

Physical table ID.