Class: AWSCDK::QuickSight::CfnDashboard::LineChartFieldWellsProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_dashboard.rb

Overview

The field well configuration of a line chart.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(line_chart_aggregated_field_wells: nil) ⇒ LineChartFieldWellsProperty

Returns a new instance of LineChartFieldWellsProperty.

Parameters:



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_wellsAWSCDK::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_propertiesObject



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_jsiiObject



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