Class: AWSCDK::QuickSight::CfnTemplate::LineChartFieldWellsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::LineChartFieldWellsProperty
- Defined in:
- quick_sight/cfn_template.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.
16129 16130 16131 16132 |
# File 'quick_sight/cfn_template.rb', line 16129 def initialize(line_chart_aggregated_field_wells: nil) @line_chart_aggregated_field_wells = line_chart_aggregated_field_wells.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnTemplate::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("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmblRlbXBsYXRlLkxpbmVDaGFydEFnZ3JlZ2F0ZWRGaWVsZFdlbGxzUHJvcGVydHkifV19fQ==")), "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.
16138 16139 16140 |
# File 'quick_sight/cfn_template.rb', line 16138 def line_chart_aggregated_field_wells @line_chart_aggregated_field_wells end |
Class Method Details
.jsii_properties ⇒ Object
16140 16141 16142 16143 16144 |
# File 'quick_sight/cfn_template.rb', line 16140 def self.jsii_properties { :line_chart_aggregated_field_wells => "lineChartAggregatedFieldWells", } end |
Instance Method Details
#to_jsii ⇒ Object
16146 16147 16148 16149 16150 16151 16152 |
# File 'quick_sight/cfn_template.rb', line 16146 def to_jsii result = {} result.merge!({ "lineChartAggregatedFieldWells" => @line_chart_aggregated_field_wells, }) result.compact end |