Interface CfnAnalysis.FilterListConfigurationProperty

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

@Stability(Stable) public static interface CfnAnalysis.FilterListConfigurationProperty extends software.amazon.jsii.JsiiSerializable
A list of filter configurations.

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.*;
 FilterListConfigurationProperty filterListConfigurationProperty = FilterListConfigurationProperty.builder()
         .matchOperator("matchOperator")
         // the properties below are optional
         .categoryValues(List.of("categoryValues"))
         .selectAllOptions("selectAllOptions")
         .build();