| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.QuickSight.Types.CustomFilterListConfiguration
Description
Synopsis
- data CustomFilterListConfiguration = CustomFilterListConfiguration' {}
- newCustomFilterListConfiguration :: CategoryFilterMatchOperator -> FilterNullOption -> CustomFilterListConfiguration
- customFilterListConfiguration_categoryValues :: Lens' CustomFilterListConfiguration (Maybe [Text])
- customFilterListConfiguration_selectAllOptions :: Lens' CustomFilterListConfiguration (Maybe CategoryFilterSelectAllOptions)
- customFilterListConfiguration_matchOperator :: Lens' CustomFilterListConfiguration CategoryFilterMatchOperator
- customFilterListConfiguration_nullOption :: Lens' CustomFilterListConfiguration FilterNullOption
Documentation
data CustomFilterListConfiguration Source #
A list of custom filter values.
See: newCustomFilterListConfiguration smart constructor.
Constructors
| CustomFilterListConfiguration' | |
Fields
| |
Instances
newCustomFilterListConfiguration Source #
Arguments
| :: CategoryFilterMatchOperator | |
| -> FilterNullOption | |
| -> CustomFilterListConfiguration |
Create a value of CustomFilterListConfiguration with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:categoryValues:CustomFilterListConfiguration', customFilterListConfiguration_categoryValues - The list of category values for the filter.
$sel:selectAllOptions:CustomFilterListConfiguration', customFilterListConfiguration_selectAllOptions - Select all of the values. Null is not the assigned value of select all.
FILTER_ALL_VALUES
$sel:matchOperator:CustomFilterListConfiguration', customFilterListConfiguration_matchOperator - The match operator that is used to determine if a filter should be
applied.
$sel:nullOption:CustomFilterListConfiguration', customFilterListConfiguration_nullOption - 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.
customFilterListConfiguration_categoryValues :: Lens' CustomFilterListConfiguration (Maybe [Text]) Source #
The list of category values for the filter.
customFilterListConfiguration_selectAllOptions :: Lens' CustomFilterListConfiguration (Maybe CategoryFilterSelectAllOptions) Source #
Select all of the values. Null is not the assigned value of select all.
FILTER_ALL_VALUES
customFilterListConfiguration_matchOperator :: Lens' CustomFilterListConfiguration CategoryFilterMatchOperator Source #
The match operator that is used to determine if a filter should be applied.
customFilterListConfiguration_nullOption :: Lens' CustomFilterListConfiguration FilterNullOption Source #
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.