Interface CfnDataSet.ILogicalTableSourceProperty
Information about the source of a logical table.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public interface ILogicalTableSourceProperty
Syntax (vb)
Public Interface ILogicalTableSourceProperty
Remarks
This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.
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.AWS.QuickSight;
var logicalTableSourceProperty = new LogicalTableSourceProperty {
DataSetArn = "dataSetArn",
JoinInstruction = new JoinInstructionProperty {
LeftOperand = "leftOperand",
OnClause = "onClause",
RightOperand = "rightOperand",
Type = "type",
// the properties below are optional
LeftJoinKeyProperties = new JoinKeyPropertiesProperty {
UniqueKey = false
},
RightJoinKeyProperties = new JoinKeyPropertiesProperty {
UniqueKey = false
}
},
PhysicalTableId = "physicalTableId"
};
Synopsis
Properties
Data |
The Amazon Resource Number (ARN) of the parent dataset. |
Join |
Specifies the result of a join of two logical tables. |
Physical |
Physical table ID. |
Properties
DataSetArn
The Amazon Resource Number (ARN) of the parent dataset.
virtual string DataSetArn { get; }
Property Value
System.
Remarks
JoinInstruction
Specifies the result of a join of two logical tables.
virtual object JoinInstruction { get; }
Property Value
System.
Remarks
PhysicalTableId
Physical table ID.
virtual string PhysicalTableId { get; }
Property Value
System.