Show / Hide Table of Contents

Class CfnDashboard.CascadingControlSourceProperty

The source controls that are used in a CascadingControlConfiguration .

Inheritance
object
CfnDashboard.CascadingControlSourceProperty
Implements
CfnDashboard.ICascadingControlSourceProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDashboard.CascadingControlSourceProperty : CfnDashboard.ICascadingControlSourceProperty
Syntax (vb)
Public Class CfnDashboard.CascadingControlSourceProperty Implements CfnDashboard.ICascadingControlSourceProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-cascadingcontrolsource.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.AWS.QuickSight;

             var cascadingControlSourceProperty = new CascadingControlSourceProperty {
                 ColumnToMatch = new ColumnIdentifierProperty {
                     ColumnName = "columnName",
                     DataSetIdentifier = "dataSetIdentifier"
                 },
                 SourceSheetControlId = "sourceSheetControlId"
             };

Synopsis

Constructors

CascadingControlSourceProperty()

The source controls that are used in a CascadingControlConfiguration .

Properties

ColumnToMatch

The column identifier that determines which column to look up for the source sheet control.

SourceSheetControlId

The source sheet control ID of a CascadingControlSource .

Constructors

CascadingControlSourceProperty()

The source controls that are used in a CascadingControlConfiguration .

public CascadingControlSourceProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-cascadingcontrolsource.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.AWS.QuickSight;

             var cascadingControlSourceProperty = new CascadingControlSourceProperty {
                 ColumnToMatch = new ColumnIdentifierProperty {
                     ColumnName = "columnName",
                     DataSetIdentifier = "dataSetIdentifier"
                 },
                 SourceSheetControlId = "sourceSheetControlId"
             };

Properties

ColumnToMatch

The column identifier that determines which column to look up for the source sheet control.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-cascadingcontrolsource.html#cfn-quicksight-dashboard-cascadingcontrolsource-columntomatch

SourceSheetControlId

The source sheet control ID of a CascadingControlSource .

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-cascadingcontrolsource.html#cfn-quicksight-dashboard-cascadingcontrolsource-sourcesheetcontrolid

Implements

CfnDashboard.ICascadingControlSourceProperty
Back to top Generated by DocFX