Class: AWSCDK::QuickSight::CfnTemplate::RadarChartFieldWellsProperty

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

Overview

The field wells of a radar chart visual.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(radar_chart_aggregated_field_wells: nil) ⇒ RadarChartFieldWellsProperty

Returns a new instance of RadarChartFieldWellsProperty.

Parameters:



21710
21711
21712
21713
# File 'quick_sight/cfn_template.rb', line 21710

def initialize(radar_chart_aggregated_field_wells: nil)
  @radar_chart_aggregated_field_wells = radar_chart_aggregated_field_wells.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnTemplate::RadarChartAggregatedFieldWellsProperty.new(**radar_chart_aggregated_field_wells.transform_keys(&:to_sym)) : radar_chart_aggregated_field_wells
  Jsii::Type.check_type(@radar_chart_aggregated_field_wells, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmblRlbXBsYXRlLlJhZGFyQ2hhcnRBZ2dyZWdhdGVkRmllbGRXZWxsc1Byb3BlcnR5In1dfX0=")), "radarChartAggregatedFieldWells") unless @radar_chart_aggregated_field_wells.nil?
end

Instance Attribute Details

#radar_chart_aggregated_field_wellsAWSCDK::IResolvable, ... (readonly)

The aggregated field wells of a radar chart visual.



21719
21720
21721
# File 'quick_sight/cfn_template.rb', line 21719

def radar_chart_aggregated_field_wells
  @radar_chart_aggregated_field_wells
end

Class Method Details

.jsii_propertiesObject



21721
21722
21723
21724
21725
# File 'quick_sight/cfn_template.rb', line 21721

def self.jsii_properties
  {
    :radar_chart_aggregated_field_wells => "radarChartAggregatedFieldWells",
  }
end

Instance Method Details

#to_jsiiObject



21727
21728
21729
21730
21731
21732
21733
# File 'quick_sight/cfn_template.rb', line 21727

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