Interface CfnDashboard.CustomFilterConfigurationProperty

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

@Stability(Stable) public static interface CfnDashboard.CustomFilterConfigurationProperty extends software.amazon.jsii.JsiiSerializable
A custom filter that filters based on a single value.

This filter can be partially matched.

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.*;
 CustomFilterConfigurationProperty customFilterConfigurationProperty = CustomFilterConfigurationProperty.builder()
         .matchOperator("matchOperator")
         .nullOption("nullOption")
         // the properties below are optional
         .categoryValue("categoryValue")
         .parameterName("parameterName")
         .selectAllOptions("selectAllOptions")
         .build();
 

See Also: