Class: AWSCDK::QuickSight::CfnAnalysis::ComboChartFieldWellsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::ComboChartFieldWellsProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
The field wells of the visual.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
Instance Attribute Summary collapse
-
#combo_chart_aggregated_field_wells ⇒ AWSCDK::IResolvable, ...
readonly
The aggregated field wells of a combo chart.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(combo_chart_aggregated_field_wells: nil) ⇒ ComboChartFieldWellsProperty
constructor
A new instance of ComboChartFieldWellsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(combo_chart_aggregated_field_wells: nil) ⇒ ComboChartFieldWellsProperty
Returns a new instance of ComboChartFieldWellsProperty.
4558 4559 4560 4561 |
# File 'quick_sight/cfn_analysis.rb', line 4558 def initialize(combo_chart_aggregated_field_wells: nil) @combo_chart_aggregated_field_wells = combo_chart_aggregated_field_wells.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::ComboChartAggregatedFieldWellsProperty.new(**combo_chart_aggregated_field_wells.transform_keys(&:to_sym)) : combo_chart_aggregated_field_wells Jsii::Type.check_type(@combo_chart_aggregated_field_wells, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLkNvbWJvQ2hhcnRBZ2dyZWdhdGVkRmllbGRXZWxsc1Byb3BlcnR5In1dfX0=")), "comboChartAggregatedFieldWells") unless @combo_chart_aggregated_field_wells.nil? end |
Instance Attribute Details
#combo_chart_aggregated_field_wells ⇒ AWSCDK::IResolvable, ... (readonly)
The aggregated field wells of a combo chart.
Combo charts only have aggregated field wells. Columns in a combo chart are aggregated by category.
4569 4570 4571 |
# File 'quick_sight/cfn_analysis.rb', line 4569 def combo_chart_aggregated_field_wells @combo_chart_aggregated_field_wells end |
Class Method Details
.jsii_properties ⇒ Object
4571 4572 4573 4574 4575 |
# File 'quick_sight/cfn_analysis.rb', line 4571 def self.jsii_properties { :combo_chart_aggregated_field_wells => "comboChartAggregatedFieldWells", } end |
Instance Method Details
#to_jsii ⇒ Object
4577 4578 4579 4580 4581 4582 4583 |
# File 'quick_sight/cfn_analysis.rb', line 4577 def to_jsii result = {} result.merge!({ "comboChartAggregatedFieldWells" => @combo_chart_aggregated_field_wells, }) result.compact end |