Interface CfnAnalysis.FilterCrossSheetControlProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.FilterCrossSheetControlProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.FilterCrossSheetControlProperty
extends software.amazon.jsii.JsiiSerializable
A control from a filter that is scoped across more than one sheet.
This represents your filter control on a sheet
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
FilterCrossSheetControlProperty filterCrossSheetControlProperty = FilterCrossSheetControlProperty.builder()
.filterControlId("filterControlId")
.sourceFilterId("sourceFilterId")
// the properties below are optional
.cascadingControlConfiguration(CascadingControlConfigurationProperty.builder()
.sourceControls(List.of(CascadingControlSourceProperty.builder()
.columnToMatch(ColumnIdentifierProperty.builder()
.columnName("columnName")
.dataSetIdentifier("dataSetIdentifier")
.build())
.sourceSheetControlId("sourceSheetControlId")
.build()))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.FilterCrossSheetControlPropertystatic final classAn implementation forCfnAnalysis.FilterCrossSheetControlProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFilterControlId
The ID of theFilterCrossSheetControl.- See Also:
-
getSourceFilterId
The source filter ID of theFilterCrossSheetControl.- See Also:
-
getCascadingControlConfiguration
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.- See Also:
-
builder
-