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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDashboard.CustomFilterConfigurationProperty
static final class
An implementation forCfnDashboard.CustomFilterConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The category value for the filter.The match operator that is used to determine if a filter should be applied.This option determines how null values should be treated when filtering data.default String
The parameter whose value should be used for the filter value.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:
-
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:
-
getCategoryValue
The category value for the filter.This field is mutually exclusive to
ParameterName
.- See Also:
-
getParameterName
The parameter whose value should be used for the filter value.This field is mutually exclusive to
CategoryValue
.- See Also:
-
getSelectAllOptions
Select all of the values. Null is not the assigned value of select all.FILTER_ALL_VALUES
- See Also:
-
builder
-