Class: AWSCDK::QuickSight::CfnDashboard::InnerFilterProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::InnerFilterProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The InnerFilter defines the subset of data to be used with the NestedFilter .
Instance Attribute Summary collapse
-
#category_inner_filter ⇒ AWSCDK::IResolvable, ...
readonly
A
CategoryInnerFilterfilters text values for theNestedFilter.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(category_inner_filter: nil) ⇒ InnerFilterProperty
constructor
A new instance of InnerFilterProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(category_inner_filter: nil) ⇒ InnerFilterProperty
Returns a new instance of InnerFilterProperty.
16875 16876 16877 16878 |
# File 'quick_sight/cfn_dashboard.rb', line 16875 def initialize(category_inner_filter: nil) @category_inner_filter = category_inner_filter.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnDashboard::CategoryInnerFilterProperty.new(**category_inner_filter.transform_keys(&:to_sym)) : category_inner_filter Jsii::Type.check_type(@category_inner_filter, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkRhc2hib2FyZC5DYXRlZ29yeUlubmVyRmlsdGVyUHJvcGVydHkifV19fQ==")), "categoryInnerFilter") unless @category_inner_filter.nil? end |
Instance Attribute Details
#category_inner_filter ⇒ AWSCDK::IResolvable, ... (readonly)
A CategoryInnerFilter filters text values for the NestedFilter .
16884 16885 16886 |
# File 'quick_sight/cfn_dashboard.rb', line 16884 def category_inner_filter @category_inner_filter end |
Class Method Details
.jsii_properties ⇒ Object
16886 16887 16888 16889 16890 |
# File 'quick_sight/cfn_dashboard.rb', line 16886 def self.jsii_properties { :category_inner_filter => "categoryInnerFilter", } end |
Instance Method Details
#to_jsii ⇒ Object
16892 16893 16894 16895 16896 16897 16898 |
# File 'quick_sight/cfn_dashboard.rb', line 16892 def to_jsii result = {} result.merge!({ "categoryInnerFilter" => @category_inner_filter, }) result.compact end |