Interface CfnDashboard.FilterScopeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.FilterScopeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.FilterScopeConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The scope configuration for a
FilterGroup .
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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.*;
Object allSheets;
FilterScopeConfigurationProperty filterScopeConfigurationProperty = FilterScopeConfigurationProperty.builder()
.allSheets(allSheets)
.selectedSheets(SelectedSheetsFilterScopeConfigurationProperty.builder()
.sheetVisualScopingConfigurations(List.of(SheetVisualScopingConfigurationProperty.builder()
.scope("scope")
.sheetId("sheetId")
// the properties below are optional
.visualIds(List.of("visualIds"))
.build()))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.FilterScopeConfigurationPropertystatic final classAn implementation forCfnDashboard.FilterScopeConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllSheets
The configuration that applies a filter to all sheets.When you choose
AllSheetsas the value for aFilterScopeConfiguration, this filter is applied to all visuals of all sheets in an Analysis, Dashboard, or Template. TheAllSheetsFilterScopeConfigurationis chosen.- See Also:
-
getSelectedSheets
The configuration for applying a filter to specific sheets.- See Also:
-
builder
-