Interface CfnDashboard.CustomFilterListConfigurationProperty

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

@Stability(Stable) public static interface CfnDashboard.CustomFilterListConfigurationProperty extends software.amazon.jsii.JsiiSerializable
A list of custom filter values.

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

See Also: