Class: AWSCDK::QuickSight::CfnTemplate::LineChartFieldWellsProperty

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



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



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_jsiiObject



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