Interface CfnAnalysis.FilterScopeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.FilterScopeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.FilterScopeConfigurationProperty
static final class
An implementation forCfnAnalysis.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
AllSheets
as the value for aFilterScopeConfiguration
, this filter is applied to all visuals of all sheets in an Analysis, Dashboard, or Template. TheAllSheetsFilterScopeConfiguration
is chosen.- See Also:
-
getSelectedSheets
The configuration for applying a filter to specific sheets.- See Also:
-
builder
-