Class: AWSCDK::QuickSight::CfnAnalysis::HeatMapSortConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::HeatMapSortConfigurationProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
The sort configuration of a heat map.
Instance Attribute Summary collapse
-
#heat_map_column_items_limit_configuration ⇒ AWSCDK::IResolvable, ...
readonly
The limit on the number of columns that are displayed in a heat map.
-
#heat_map_column_sort ⇒ AWSCDK::IResolvable, ...
readonly
The column sort configuration for heat map for columns that aren't a part of a field well.
-
#heat_map_row_items_limit_configuration ⇒ AWSCDK::IResolvable, ...
readonly
The limit on the number of rows that are displayed in a heat map.
-
#heat_map_row_sort ⇒ AWSCDK::IResolvable, ...
readonly
The field sort configuration of the rows fields.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(heat_map_column_items_limit_configuration: nil, heat_map_column_sort: nil, heat_map_row_items_limit_configuration: nil, heat_map_row_sort: nil) ⇒ HeatMapSortConfigurationProperty
constructor
A new instance of HeatMapSortConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(heat_map_column_items_limit_configuration: nil, heat_map_column_sort: nil, heat_map_row_items_limit_configuration: nil, heat_map_row_sort: nil) ⇒ HeatMapSortConfigurationProperty
Returns a new instance of HeatMapSortConfigurationProperty.
15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 |
# File 'quick_sight/cfn_analysis.rb', line 15208 def initialize(heat_map_column_items_limit_configuration: nil, heat_map_column_sort: nil, heat_map_row_items_limit_configuration: nil, heat_map_row_sort: nil) @heat_map_column_items_limit_configuration = heat_map_column_items_limit_configuration.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::ItemsLimitConfigurationProperty.new(**heat_map_column_items_limit_configuration.transform_keys(&:to_sym)) : heat_map_column_items_limit_configuration Jsii::Type.check_type(@heat_map_column_items_limit_configuration, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLkl0ZW1zTGltaXRDb25maWd1cmF0aW9uUHJvcGVydHkifV19fQ==")), "heatMapColumnItemsLimitConfiguration") unless @heat_map_column_items_limit_configuration.nil? @heat_map_column_sort = heat_map_column_sort Jsii::Type.check_type(@heat_map_column_sort, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsidW5pb24iOnsidHlwZXMiOlt7ImZxbiI6ImF3cy1jZGstbGliLklSZXNvbHZhYmxlIn0seyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfcXVpY2tzaWdodC5DZm5BbmFseXNpcy5GaWVsZFNvcnRPcHRpb25zUHJvcGVydHkifV19fSwia2luZCI6ImFycmF5In19XX19")), "heatMapColumnSort") unless @heat_map_column_sort.nil? @heat_map_row_items_limit_configuration = heat_map_row_items_limit_configuration.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::ItemsLimitConfigurationProperty.new(**heat_map_row_items_limit_configuration.transform_keys(&:to_sym)) : heat_map_row_items_limit_configuration Jsii::Type.check_type(@heat_map_row_items_limit_configuration, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLkl0ZW1zTGltaXRDb25maWd1cmF0aW9uUHJvcGVydHkifV19fQ==")), "heatMapRowItemsLimitConfiguration") unless @heat_map_row_items_limit_configuration.nil? @heat_map_row_sort = heat_map_row_sort Jsii::Type.check_type(@heat_map_row_sort, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsidW5pb24iOnsidHlwZXMiOlt7ImZxbiI6ImF3cy1jZGstbGliLklSZXNvbHZhYmxlIn0seyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfcXVpY2tzaWdodC5DZm5BbmFseXNpcy5GaWVsZFNvcnRPcHRpb25zUHJvcGVydHkifV19fSwia2luZCI6ImFycmF5In19XX19")), "heatMapRowSort") unless @heat_map_row_sort.nil? end |
Instance Attribute Details
#heat_map_column_items_limit_configuration ⇒ AWSCDK::IResolvable, ... (readonly)
The limit on the number of columns that are displayed in a heat map.
15223 15224 15225 |
# File 'quick_sight/cfn_analysis.rb', line 15223 def heat_map_column_items_limit_configuration @heat_map_column_items_limit_configuration end |
#heat_map_column_sort ⇒ AWSCDK::IResolvable, ... (readonly)
The column sort configuration for heat map for columns that aren't a part of a field well.
15228 15229 15230 |
# File 'quick_sight/cfn_analysis.rb', line 15228 def heat_map_column_sort @heat_map_column_sort end |
#heat_map_row_items_limit_configuration ⇒ AWSCDK::IResolvable, ... (readonly)
The limit on the number of rows that are displayed in a heat map.
15233 15234 15235 |
# File 'quick_sight/cfn_analysis.rb', line 15233 def heat_map_row_items_limit_configuration @heat_map_row_items_limit_configuration end |
#heat_map_row_sort ⇒ AWSCDK::IResolvable, ... (readonly)
The field sort configuration of the rows fields.
15238 15239 15240 |
# File 'quick_sight/cfn_analysis.rb', line 15238 def heat_map_row_sort @heat_map_row_sort end |
Class Method Details
.jsii_properties ⇒ Object
15240 15241 15242 15243 15244 15245 15246 15247 |
# File 'quick_sight/cfn_analysis.rb', line 15240 def self.jsii_properties { :heat_map_column_items_limit_configuration => "heatMapColumnItemsLimitConfiguration", :heat_map_column_sort => "heatMapColumnSort", :heat_map_row_items_limit_configuration => "heatMapRowItemsLimitConfiguration", :heat_map_row_sort => "heatMapRowSort", } end |
Instance Method Details
#to_jsii ⇒ Object
15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 |
# File 'quick_sight/cfn_analysis.rb', line 15249 def to_jsii result = {} result.merge!({ "heatMapColumnItemsLimitConfiguration" => @heat_map_column_items_limit_configuration, "heatMapColumnSort" => @heat_map_column_sort, "heatMapRowItemsLimitConfiguration" => @heat_map_row_items_limit_configuration, "heatMapRowSort" => @heat_map_row_sort, }) result.compact end |