Class: AWSCDK::QuickSight::CfnTemplate::FilterListConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::FilterListConfigurationProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
A list of filter configurations.
Instance Attribute Summary collapse
-
#category_values ⇒ Array<String>?
readonly
The list of category values for the filter.
-
#match_operator ⇒ String
readonly
The match operator that is used to determine if a filter should be applied.
-
#null_option ⇒ String?
readonly
This option determines how null values should be treated when filtering data.
-
#select_all_options ⇒ String?
readonly
Select all of the values.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(match_operator:, category_values: nil, null_option: nil, select_all_options: nil) ⇒ FilterListConfigurationProperty
constructor
A new instance of FilterListConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(match_operator:, category_values: nil, null_option: nil, select_all_options: nil) ⇒ FilterListConfigurationProperty
Returns a new instance of FilterListConfigurationProperty.
9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 |
# File 'quick_sight/cfn_template.rb', line 9973 def initialize(match_operator:, category_values: nil, null_option: nil, select_all_options: nil) @match_operator = match_operator Jsii::Type.check_type(@match_operator, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "matchOperator") @category_values = category_values Jsii::Type.check_type(@category_values, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7InByaW1pdGl2ZSI6InN0cmluZyJ9LCJraW5kIjoiYXJyYXkifX0=")), "categoryValues") unless @category_values.nil? @null_option = null_option Jsii::Type.check_type(@null_option, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "nullOption") unless @null_option.nil? @select_all_options = Jsii::Type.check_type(@select_all_options, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "selectAllOptions") unless @select_all_options.nil? end |
Instance Attribute Details
#category_values ⇒ Array<String>? (readonly)
The list of category values for the filter.
9993 9994 9995 |
# File 'quick_sight/cfn_template.rb', line 9993 def category_values @category_values end |
#match_operator ⇒ String (readonly)
The match operator that is used to determine if a filter should be applied.
9988 9989 9990 |
# File 'quick_sight/cfn_template.rb', line 9988 def match_operator @match_operator end |
#null_option ⇒ String? (readonly)
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.
10002 10003 10004 |
# File 'quick_sight/cfn_template.rb', line 10002 def null_option @null_option end |
#select_all_options ⇒ String? (readonly)
Select all of the values. Null is not the assigned value of select all.
FILTER_ALL_VALUES
10009 10010 10011 |
# File 'quick_sight/cfn_template.rb', line 10009 def @select_all_options end |
Class Method Details
.jsii_properties ⇒ Object
10011 10012 10013 10014 10015 10016 10017 10018 |
# File 'quick_sight/cfn_template.rb', line 10011 def self.jsii_properties { :match_operator => "matchOperator", :category_values => "categoryValues", :null_option => "nullOption", :select_all_options => "selectAllOptions", } end |
Instance Method Details
#to_jsii ⇒ Object
10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 |
# File 'quick_sight/cfn_template.rb', line 10020 def to_jsii result = {} result.merge!({ "matchOperator" => @match_operator, "categoryValues" => @category_values, "nullOption" => @null_option, "selectAllOptions" => @select_all_options, }) result.compact end |