Show / Hide Table of Contents

Class CfnDataSetPropsMixin.SourceTableProperty

A source table that provides initial data from either a physical table or parent dataset.

Inheritance
object
CfnDataSetPropsMixin.SourceTableProperty
Implements
CfnDataSetPropsMixin.ISourceTableProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-sourcetable.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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-sourcetable.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.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

object

Remarks

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

Type union: either IResolvable or CfnDataSetPropsMixin.IParentDataSetProperty

PhysicalTableId

The identifier of the physical table that serves as the data source.

public string? PhysicalTableId { get; set; }
Property Value

string

Remarks

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

Implements

CfnDataSetPropsMixin.ISourceTableProperty
Back to top Generated by DocFX