Class CfnDashboard.FilterCrossSheetControlProperty
A control from a filter that is scoped across more than one sheet.
Inheritance
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FilterCrossSheetControlProperty : Object, CfnDashboard.IFilterCrossSheetControlProperty
Syntax (vb)
Public Class FilterCrossSheetControlProperty
Inherits Object
Implements CfnDashboard.IFilterCrossSheetControlProperty
Remarks
This represents your filter control on a sheet
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
Filter |
Properties
Cascading |
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. |
Filter |
The ID of the |
Source |
The source filter ID of the |
Constructors
FilterCrossSheetControlProperty()
public FilterCrossSheetControlProperty()
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
System.
Remarks
FilterControlId
The ID of the FilterCrossSheetControl
.
public string FilterControlId { get; set; }
Property Value
System.
Remarks
SourceFilterId
The source filter ID of the FilterCrossSheetControl
.
public string SourceFilterId { get; set; }
Property Value
System.