Show / Hide Table of Contents

Interface CfnDataSetPropsMixin.ILogicalTableSourceProperty

Information about the source of a logical table.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnDataSetPropsMixin.ILogicalTableSourceProperty
Syntax (vb)
Public Interface CfnDataSetPropsMixin.ILogicalTableSourceProperty
Remarks

This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-logicaltablesource.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;

             var logicalTableSourceProperty = new LogicalTableSourceProperty {
                 DataSetArn = "dataSetArn",
                 JoinInstruction = new JoinInstructionProperty {
                     LeftJoinKeyProperties = new JoinKeyPropertiesProperty {
                         UniqueKey = false
                     },
                     LeftOperand = "leftOperand",
                     OnClause = "onClause",
                     RightJoinKeyProperties = new JoinKeyPropertiesProperty {
                         UniqueKey = false
                     },
                     RightOperand = "rightOperand",
                     Type = "type"
                 },
                 PhysicalTableId = "physicalTableId"
             };

Synopsis

Properties

DataSetArn

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

JoinInstruction

Specifies the result of a join of two logical tables.

PhysicalTableId

Physical table ID.

Properties

DataSetArn

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

string? DataSetArn { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-logicaltablesource.html#cfn-quicksight-dataset-logicaltablesource-datasetarn

JoinInstruction

Specifies the result of a join of two logical tables.

object? JoinInstruction { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-logicaltablesource.html#cfn-quicksight-dataset-logicaltablesource-joininstruction

Type union: either IResolvable or CfnDataSetPropsMixin.IJoinInstructionProperty

PhysicalTableId

Physical table ID.

string? PhysicalTableId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-logicaltablesource.html#cfn-quicksight-dataset-logicaltablesource-physicaltableid

Back to top Generated by DocFX