Class: AWSCDK::QuickSight::CfnDashboard::RadarChartSeriesSettingsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::RadarChartSeriesSettingsProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The series settings of a radar chart.
Instance Attribute Summary collapse
-
#area_style_settings ⇒ AWSCDK::IResolvable, ...
readonly
The area style settings of a radar chart.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(area_style_settings: nil) ⇒ RadarChartSeriesSettingsProperty
constructor
A new instance of RadarChartSeriesSettingsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(area_style_settings: nil) ⇒ RadarChartSeriesSettingsProperty
Returns a new instance of RadarChartSeriesSettingsProperty.
24589 24590 24591 24592 |
# File 'quick_sight/cfn_dashboard.rb', line 24589 def initialize(area_style_settings: nil) @area_style_settings = area_style_settings.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnDashboard::RadarChartAreaStyleSettingsProperty.new(**area_style_settings.transform_keys(&:to_sym)) : area_style_settings Jsii::Type.check_type(@area_style_settings, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkRhc2hib2FyZC5SYWRhckNoYXJ0QXJlYVN0eWxlU2V0dGluZ3NQcm9wZXJ0eSJ9XX19")), "areaStyleSettings") unless @area_style_settings.nil? end |
Instance Attribute Details
#area_style_settings ⇒ AWSCDK::IResolvable, ... (readonly)
The area style settings of a radar chart.
24598 24599 24600 |
# File 'quick_sight/cfn_dashboard.rb', line 24598 def area_style_settings @area_style_settings end |
Class Method Details
.jsii_properties ⇒ Object
24600 24601 24602 24603 24604 |
# File 'quick_sight/cfn_dashboard.rb', line 24600 def self.jsii_properties { :area_style_settings => "areaStyleSettings", } end |
Instance Method Details
#to_jsii ⇒ Object
24606 24607 24608 24609 24610 24611 24612 |
# File 'quick_sight/cfn_dashboard.rb', line 24606 def to_jsii result = {} result.merge!({ "areaStyleSettings" => @area_style_settings, }) result.compact end |