Class: AWSCDK::QuickSight::CfnAnalysis::WaterfallChartFieldWellsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::WaterfallChartFieldWellsProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
The field well configuration of a waterfall visual.
Instance Attribute Summary collapse
-
#waterfall_chart_aggregated_field_wells ⇒ AWSCDK::IResolvable, ...
readonly
The field well configuration of a waterfall visual.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(waterfall_chart_aggregated_field_wells: nil) ⇒ WaterfallChartFieldWellsProperty
constructor
A new instance of WaterfallChartFieldWellsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(waterfall_chart_aggregated_field_wells: nil) ⇒ WaterfallChartFieldWellsProperty
Returns a new instance of WaterfallChartFieldWellsProperty.
31830 31831 31832 31833 |
# File 'quick_sight/cfn_analysis.rb', line 31830 def initialize(waterfall_chart_aggregated_field_wells: nil) @waterfall_chart_aggregated_field_wells = waterfall_chart_aggregated_field_wells.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::WaterfallChartAggregatedFieldWellsProperty.new(**waterfall_chart_aggregated_field_wells.transform_keys(&:to_sym)) : waterfall_chart_aggregated_field_wells Jsii::Type.check_type(@waterfall_chart_aggregated_field_wells, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLldhdGVyZmFsbENoYXJ0QWdncmVnYXRlZEZpZWxkV2VsbHNQcm9wZXJ0eSJ9XX19")), "waterfallChartAggregatedFieldWells") unless @waterfall_chart_aggregated_field_wells.nil? end |
Instance Attribute Details
#waterfall_chart_aggregated_field_wells ⇒ AWSCDK::IResolvable, ... (readonly)
The field well configuration of a waterfall visual.
31839 31840 31841 |
# File 'quick_sight/cfn_analysis.rb', line 31839 def waterfall_chart_aggregated_field_wells @waterfall_chart_aggregated_field_wells end |
Class Method Details
.jsii_properties ⇒ Object
31841 31842 31843 31844 31845 |
# File 'quick_sight/cfn_analysis.rb', line 31841 def self.jsii_properties { :waterfall_chart_aggregated_field_wells => "waterfallChartAggregatedFieldWells", } end |
Instance Method Details
#to_jsii ⇒ Object
31847 31848 31849 31850 31851 31852 31853 |
# File 'quick_sight/cfn_analysis.rb', line 31847 def to_jsii result = {} result.merge!({ "waterfallChartAggregatedFieldWells" => @waterfall_chart_aggregated_field_wells, }) result.compact end |