Interface CfnAnalysis.SelectedSheetsFilterScopeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.SelectedSheetsFilterScopeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.SelectedSheetsFilterScopeConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for applying a filter to specific sheets or visuals.
You can apply this filter to multiple visuals that are on one sheet or to all visuals on a sheet.
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.*; SelectedSheetsFilterScopeConfigurationProperty selectedSheetsFilterScopeConfigurationProperty = SelectedSheetsFilterScopeConfigurationProperty.builder() .sheetVisualScopingConfigurations(List.of(SheetVisualScopingConfigurationProperty.builder() .scope("scope") .sheetId("sheetId") // the properties below are optional .visualIds(List.of("visualIds")) .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnAnalysis.SelectedSheetsFilterScopeConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSheetVisualScopingConfigurations
The sheet ID and visual IDs of the sheet and visuals that the filter is applied to.- See Also:
-
builder
@Stability(Stable) static CfnAnalysis.SelectedSheetsFilterScopeConfigurationProperty.Builder builder()
-