Interface CfnTemplate.FilterScopeConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTemplate.FilterScopeConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnTemplate

@Stability(Stable) public static interface CfnTemplate.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: