Class: AWSCDK::QuickSight::CfnDashboard::BoxPlotStyleOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::BoxPlotStyleOptionsProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The style options of the box plot.
Instance Attribute Summary collapse
-
#fill_style ⇒ String?
readonly
The fill styles (solid, transparent) of the box plot.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(fill_style: nil) ⇒ BoxPlotStyleOptionsProperty
constructor
A new instance of BoxPlotStyleOptionsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(fill_style: nil) ⇒ BoxPlotStyleOptionsProperty
Returns a new instance of BoxPlotStyleOptionsProperty.
3009 3010 3011 3012 |
# File 'quick_sight/cfn_dashboard.rb', line 3009 def initialize(fill_style: nil) @fill_style = fill_style Jsii::Type.check_type(@fill_style, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "fillStyle") unless @fill_style.nil? end |
Instance Attribute Details
#fill_style ⇒ String? (readonly)
The fill styles (solid, transparent) of the box plot.
3018 3019 3020 |
# File 'quick_sight/cfn_dashboard.rb', line 3018 def fill_style @fill_style end |
Class Method Details
.jsii_properties ⇒ Object
3020 3021 3022 3023 3024 |
# File 'quick_sight/cfn_dashboard.rb', line 3020 def self.jsii_properties { :fill_style => "fillStyle", } end |
Instance Method Details
#to_jsii ⇒ Object
3026 3027 3028 3029 3030 3031 3032 |
# File 'quick_sight/cfn_dashboard.rb', line 3026 def to_jsii result = {} result.merge!({ "fillStyle" => @fill_style, }) result.compact end |