Class: AWSCDK::QuickSight::CfnDashboard::BoxPlotStyleOptionsProperty

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

Overview

The style options of the box plot.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(fill_style: nil) ⇒ BoxPlotStyleOptionsProperty

Returns a new instance of BoxPlotStyleOptionsProperty.

Parameters:

  • fill_style (String, nil) (defaults to: nil)

    The fill styles (solid, transparent) of the box plot.



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_styleString? (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_propertiesObject



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_jsiiObject



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