Class: Aws::QuickSight::Types::CustomFilterListConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::CustomFilterListConfiguration
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
A list of custom filter values.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#category_values ⇒ Array<String>
The list of category values for the filter.
-
#match_operator ⇒ String
The match operator that is used to determine if a filter should be applied.
-
#null_option ⇒ String
This option determines how null values should be treated when filtering data.
-
#select_all_options ⇒ String
Select all of the values.
Instance Attribute Details
#category_values ⇒ Array<String>
The list of category values for the filter.
7218 7219 7220 7221 7222 7223 7224 7225 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7218 class CustomFilterListConfiguration < Struct.new( :match_operator, :category_values, :select_all_options, :null_option) SENSITIVE = [] include Aws::Structure end |
#match_operator ⇒ String
The match operator that is used to determine if a filter should be applied.
7218 7219 7220 7221 7222 7223 7224 7225 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7218 class CustomFilterListConfiguration < Struct.new( :match_operator, :category_values, :select_all_options, :null_option) SENSITIVE = [] include Aws::Structure end |
#null_option ⇒ String
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.
7218 7219 7220 7221 7222 7223 7224 7225 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7218 class CustomFilterListConfiguration < Struct.new( :match_operator, :category_values, :select_all_options, :null_option) SENSITIVE = [] include Aws::Structure end |
#select_all_options ⇒ String
Select all of the values. Null is not the assigned value of select all.
FILTER_ALL_VALUES
^
7218 7219 7220 7221 7222 7223 7224 7225 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7218 class CustomFilterListConfiguration < Struct.new( :match_operator, :category_values, :select_all_options, :null_option) SENSITIVE = [] include Aws::Structure end |