Class: AWSCDK::QuickSight::CfnTemplate::WaterfallChartOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::WaterfallChartOptionsProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
The options that determine the presentation of a waterfall visual.
Instance Attribute Summary collapse
-
#total_bar_label ⇒ String?
readonly
This option determines the total bar label of a waterfall visual.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(total_bar_label: nil) ⇒ WaterfallChartOptionsProperty
constructor
A new instance of WaterfallChartOptionsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(total_bar_label: nil) ⇒ WaterfallChartOptionsProperty
Returns a new instance of WaterfallChartOptionsProperty.
30188 30189 30190 30191 |
# File 'quick_sight/cfn_template.rb', line 30188 def initialize(total_bar_label: nil) @total_bar_label = Jsii::Type.check_type(@total_bar_label, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "totalBarLabel") unless @total_bar_label.nil? end |
Instance Attribute Details
#total_bar_label ⇒ String? (readonly)
This option determines the total bar label of a waterfall visual.
30197 30198 30199 |
# File 'quick_sight/cfn_template.rb', line 30197 def @total_bar_label end |
Class Method Details
.jsii_properties ⇒ Object
30199 30200 30201 30202 30203 |
# File 'quick_sight/cfn_template.rb', line 30199 def self.jsii_properties { :total_bar_label => "totalBarLabel", } end |
Instance Method Details
#to_jsii ⇒ Object
30205 30206 30207 30208 30209 30210 30211 |
# File 'quick_sight/cfn_template.rb', line 30205 def to_jsii result = {} result.merge!({ "totalBarLabel" => @total_bar_label, }) result.compact end |