Interface CfnDashboard.FilterCrossSheetControlProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.FilterCrossSheetControlProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.FilterCrossSheetControlProperty
static final class
An implementation forCfnDashboard.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
-