Class: AWSCDK::QuickSight::CfnTemplate::BoxPlotStyleOptionsProperty

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



2865
2866
2867
2868
# File 'quick_sight/cfn_template.rb', line 2865

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.



2874
2875
2876
# File 'quick_sight/cfn_template.rb', line 2874

def fill_style
  @fill_style
end

Class Method Details

.jsii_propertiesObject



2876
2877
2878
2879
2880
# File 'quick_sight/cfn_template.rb', line 2876

def self.jsii_properties
  {
    :fill_style => "fillStyle",
  }
end

Instance Method Details

#to_jsiiObject



2882
2883
2884
2885
2886
2887
2888
# File 'quick_sight/cfn_template.rb', line 2882

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