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")) .nullOption("nullOption") .selectAllOptions("selectAllOptions") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.FilterListConfigurationProperty
static final class
An implementation forCfnAnalysis.FilterListConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The list of category values for the filter.The match operator that is used to determine if a filter should be applied.default String
This option determines how null values should be treated when filtering data.default String
Select all of the values.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:
-
getCategoryValues
The list of category values for the filter.- 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:
-
getSelectAllOptions
Select all of the values. Null is not the assigned value of select all.FILTER_ALL_VALUES
- See Also:
-
builder
-