Interface CfnTemplate.SheetVisualScopingConfigurationProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnTemplate.SheetVisualScopingConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.SheetVisualScopingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The filter that is applied to the options.
 
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.*;
 SheetVisualScopingConfigurationProperty sheetVisualScopingConfigurationProperty = SheetVisualScopingConfigurationProperty.builder()
         .scope("scope")
         .sheetId("sheetId")
         // the properties below are optional
         .visualIds(List.of("visualIds"))
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.SheetVisualScopingConfigurationPropertystatic final classAn implementation forCfnTemplate.SheetVisualScopingConfigurationProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getScopeThe scope of the applied entities. Choose one of the following options:.- ALL_VISUALS
- SELECTED_VISUALS
 
- 
getSheetIdThe selected sheet that the filter is applied to.
- 
getVisualIdsThe selected visuals that the filter is applied to.
- 
builder
 
-