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: