Class: AWSCDK::QuickSight::CfnDashboard::LineChartFieldWellsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::LineChartFieldWellsProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The field well configuration of a line chart.
Instance Attribute Summary collapse
-
#line_chart_aggregated_field_wells ⇒ AWSCDK::IResolvable, ...
readonly
The field well configuration of a line chart.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(line_chart_aggregated_field_wells: nil) ⇒ LineChartFieldWellsProperty
constructor
A new instance of LineChartFieldWellsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(line_chart_aggregated_field_wells: nil) ⇒ LineChartFieldWellsProperty
Returns a new instance of LineChartFieldWellsProperty.
18879 18880 18881 18882 |
# File 'quick_sight/cfn_dashboard.rb', line 18879 def initialize(line_chart_aggregated_field_wells: nil) @line_chart_aggregated_field_wells = line_chart_aggregated_field_wells.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnDashboard::LineChartAggregatedFieldWellsProperty.new(**line_chart_aggregated_field_wells.transform_keys(&:to_sym)) : line_chart_aggregated_field_wells Jsii::Type.check_type(@line_chart_aggregated_field_wells, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkRhc2hib2FyZC5MaW5lQ2hhcnRBZ2dyZWdhdGVkRmllbGRXZWxsc1Byb3BlcnR5In1dfX0=")), "lineChartAggregatedFieldWells") unless @line_chart_aggregated_field_wells.nil? end |
Instance Attribute Details
#line_chart_aggregated_field_wells ⇒ AWSCDK::IResolvable, ... (readonly)
The field well configuration of a line chart.
18888 18889 18890 |
# File 'quick_sight/cfn_dashboard.rb', line 18888 def line_chart_aggregated_field_wells @line_chart_aggregated_field_wells end |
Class Method Details
.jsii_properties ⇒ Object
18890 18891 18892 18893 18894 |
# File 'quick_sight/cfn_dashboard.rb', line 18890 def self.jsii_properties { :line_chart_aggregated_field_wells => "lineChartAggregatedFieldWells", } end |
Instance Method Details
#to_jsii ⇒ Object
18896 18897 18898 18899 18900 18901 18902 |
# File 'quick_sight/cfn_dashboard.rb', line 18896 def to_jsii result = {} result.merge!({ "lineChartAggregatedFieldWells" => @line_chart_aggregated_field_wells, }) result.compact end |