Show / Hide Table of Contents

Class CfnTopicV2PropsMixin.DataSetRelationProperty

A relation between two datasets referenced by a V2 (SEMANTIC_VIEW) topic.

Inheritance
object
CfnTopicV2PropsMixin.DataSetRelationProperty
Implements
CfnTopicV2PropsMixin.IDataSetRelationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTopicV2PropsMixin.DataSetRelationProperty : CfnTopicV2PropsMixin.IDataSetRelationProperty
Syntax (vb)
Public Class CfnTopicV2PropsMixin.DataSetRelationProperty Implements CfnTopicV2PropsMixin.IDataSetRelationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topicv2-datasetrelation.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 dataSetRelationProperty = new DataSetRelationProperty {
                 Left = new DataSetRelationEndpointProperty {
                     ColumnNames = new [] { "columnNames" },
                     DataSetArn = "dataSetArn"
                 },
                 Right = new DataSetRelationEndpointProperty {
                     ColumnNames = new [] { "columnNames" },
                     DataSetArn = "dataSetArn"
                 }
             };

Synopsis

Constructors

DataSetRelationProperty()

A relation between two datasets referenced by a V2 (SEMANTIC_VIEW) topic.

Properties

Left

A relation between two datasets referenced by a V2 (SEMANTIC_VIEW) topic.

Right

A relation between two datasets referenced by a V2 (SEMANTIC_VIEW) topic.

Constructors

DataSetRelationProperty()

A relation between two datasets referenced by a V2 (SEMANTIC_VIEW) topic.

public DataSetRelationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topicv2-datasetrelation.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 dataSetRelationProperty = new DataSetRelationProperty {
                 Left = new DataSetRelationEndpointProperty {
                     ColumnNames = new [] { "columnNames" },
                     DataSetArn = "dataSetArn"
                 },
                 Right = new DataSetRelationEndpointProperty {
                     ColumnNames = new [] { "columnNames" },
                     DataSetArn = "dataSetArn"
                 }
             };

Properties

Left

A relation between two datasets referenced by a V2 (SEMANTIC_VIEW) topic.

public object? Left { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topicv2-datasetrelation.html#cfn-quicksight-topicv2-datasetrelation-left

Type union: either IResolvable or CfnTopicV2PropsMixin.IDataSetRelationEndpointProperty

Right

A relation between two datasets referenced by a V2 (SEMANTIC_VIEW) topic.

public object? Right { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-topicv2-datasetrelation.html#cfn-quicksight-topicv2-datasetrelation-right

Type union: either IResolvable or CfnTopicV2PropsMixin.IDataSetRelationEndpointProperty

Implements

CfnTopicV2PropsMixin.IDataSetRelationProperty
Back to top Generated by DocFX