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.
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
Remarks
JoinInstruction
Specifies the result of a join of two logical tables.
object? JoinInstruction { get; }
Property Value
Remarks
PhysicalTableId
Physical table ID.
string? PhysicalTableId { get; }