Interface CfnTemplate.CustomFilterListConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.CustomFilterListConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.CustomFilterListConfigurationPropertystatic final classAn implementation forCfnTemplate.CustomFilterListConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMatchOperator
The match operator that is used to determine if a filter should be applied.- See Also:
-
getNullOption
This option determines how null values should be treated when filtering data.ALL_VALUES: Include null values in filtered results.NULLS_ONLY: Only include null values in filtered results.NON_NULLS_ONLY: Exclude null values from filtered results.
- See Also:
-
getCategoryValues
The list of category values for the filter.- See Also:
-
getSelectAllOptions
Select all of the values. Null is not the assigned value of select all.FILTER_ALL_VALUES
- See Also:
-
builder
-