Class CfnDataSetPropsMixin.SourceTableProperty
A source table that provides initial data from either a physical table or parent dataset.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSetPropsMixin.SourceTableProperty : CfnDataSetPropsMixin.ISourceTableProperty
Syntax (vb)
Public Class CfnDataSetPropsMixin.SourceTableProperty Implements CfnDataSetPropsMixin.ISourceTableProperty
Remarks
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.Mixins.Preview.AWS.QuickSight.Mixins;
var sourceTableProperty = new SourceTableProperty {
DataSet = new ParentDataSetProperty {
DataSetArn = "dataSetArn",
InputColumns = new [] { new InputColumnProperty {
Id = "id",
Name = "name",
SubType = "subType",
Type = "type"
} }
},
PhysicalTableId = "physicalTableId"
};
Synopsis
Constructors
| SourceTableProperty() | A source table that provides initial data from either a physical table or parent dataset. |
Properties
| DataSet | A parent dataset that serves as the data source instead of a physical table. |
| PhysicalTableId | The identifier of the physical table that serves as the data source. |
Constructors
SourceTableProperty()
A source table that provides initial data from either a physical table or parent dataset.
public SourceTableProperty()
Remarks
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.Mixins.Preview.AWS.QuickSight.Mixins;
var sourceTableProperty = new SourceTableProperty {
DataSet = new ParentDataSetProperty {
DataSetArn = "dataSetArn",
InputColumns = new [] { new InputColumnProperty {
Id = "id",
Name = "name",
SubType = "subType",
Type = "type"
} }
},
PhysicalTableId = "physicalTableId"
};
Properties
DataSet
A parent dataset that serves as the data source instead of a physical table.
public object? DataSet { get; set; }
Property Value
Remarks
PhysicalTableId
The identifier of the physical table that serves as the data source.
public string? PhysicalTableId { get; set; }