Class: AWSCDK::QuickSight::CfnAnalysis::LineChartFieldWellsProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_analysis.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:



17940
17941
17942
17943
# File 'quick_sight/cfn_analysis.rb', line 17940

def initialize(line_chart_aggregated_field_wells: nil)
  @line_chart_aggregated_field_wells = line_chart_aggregated_field_wells.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::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("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLkxpbmVDaGFydEFnZ3JlZ2F0ZWRGaWVsZFdlbGxzUHJvcGVydHkifV19fQ==")), "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.



17949
17950
17951
# File 'quick_sight/cfn_analysis.rb', line 17949

def line_chart_aggregated_field_wells
  @line_chart_aggregated_field_wells
end

Class Method Details

.jsii_propertiesObject



17951
17952
17953
17954
17955
# File 'quick_sight/cfn_analysis.rb', line 17951

def self.jsii_properties
  {
    :line_chart_aggregated_field_wells => "lineChartAggregatedFieldWells",
  }
end

Instance Method Details

#to_jsiiObject



17957
17958
17959
17960
17961
17962
17963
# File 'quick_sight/cfn_analysis.rb', line 17957

def to_jsii
  result = {}
  result.merge!({
    "lineChartAggregatedFieldWells" => @line_chart_aggregated_field_wells,
  })
  result.compact
end