Show / Hide Table of Contents

Class CfnDashboard.FilterCrossSheetControlProperty

A control from a filter that is scoped across more than one sheet.

Inheritance
object
CfnDashboard.FilterCrossSheetControlProperty
Implements
CfnDashboard.IFilterCrossSheetControlProperty
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.FilterCrossSheetControlProperty : CfnDashboard.IFilterCrossSheetControlProperty
Syntax (vb)
Public Class CfnDashboard.FilterCrossSheetControlProperty Implements CfnDashboard.IFilterCrossSheetControlProperty
Remarks

This represents your filter control on a sheet

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filtercrosssheetcontrol.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 filterCrossSheetControlProperty = new FilterCrossSheetControlProperty {
                 FilterControlId = "filterControlId",
                 SourceFilterId = "sourceFilterId",

                 // the properties below are optional
                 CascadingControlConfiguration = new CascadingControlConfigurationProperty {
                     SourceControls = new [] { new CascadingControlSourceProperty {
                         ColumnToMatch = new ColumnIdentifierProperty {
                             ColumnName = "columnName",
                             DataSetIdentifier = "dataSetIdentifier"
                         },
                         SourceSheetControlId = "sourceSheetControlId"
                     } }
                 }
             };

Synopsis

Constructors

FilterCrossSheetControlProperty()

A control from a filter that is scoped across more than one sheet.

Properties

CascadingControlConfiguration

The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.

FilterControlId

The ID of the FilterCrossSheetControl .

SourceFilterId

The source filter ID of the FilterCrossSheetControl .

Constructors

FilterCrossSheetControlProperty()

A control from a filter that is scoped across more than one sheet.

public FilterCrossSheetControlProperty()
Remarks

This represents your filter control on a sheet

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-filtercrosssheetcontrol.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 filterCrossSheetControlProperty = new FilterCrossSheetControlProperty {
                 FilterControlId = "filterControlId",
                 SourceFilterId = "sourceFilterId",

                 // the properties below are optional
                 CascadingControlConfiguration = new CascadingControlConfigurationProperty {
                     SourceControls = new [] { new CascadingControlSourceProperty {
                         ColumnToMatch = new ColumnIdentifierProperty {
                             ColumnName = "columnName",
                             DataSetIdentifier = "dataSetIdentifier"
                         },
                         SourceSheetControlId = "sourceSheetControlId"
                     } }
                 }
             };

Properties

CascadingControlConfiguration

The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.

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

object

Remarks

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

FilterControlId

The ID of the FilterCrossSheetControl .

public string FilterControlId { get; set; }
Property Value

string

Remarks

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

SourceFilterId

The source filter ID of the FilterCrossSheetControl .

public string SourceFilterId { get; set; }
Property Value

string

Remarks

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

Implements

CfnDashboard.IFilterCrossSheetControlProperty
Back to top Generated by DocFX