Class CfnDashboard.FilterCrossSheetControlProperty
A control from a filter that is scoped across more than one sheet.
Implements
Inherited Members
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
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 |
SourceFilterId | The source filter ID of the |
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
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
Remarks
FilterControlId
The ID of the FilterCrossSheetControl
.
public string FilterControlId { get; set; }
Property Value
Remarks
SourceFilterId
The source filter ID of the FilterCrossSheetControl
.
public string SourceFilterId { get; set; }