Class: AWSCDK::QuickSight::CfnTemplate::NegativeValueConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::NegativeValueConfigurationProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
The options that determine the negative value configuration.
Instance Attribute Summary collapse
-
#display_mode ⇒ String
readonly
Determines the display mode of the negative value configuration.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(display_mode:) ⇒ NegativeValueConfigurationProperty
constructor
A new instance of NegativeValueConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(display_mode:) ⇒ NegativeValueConfigurationProperty
Returns a new instance of NegativeValueConfigurationProperty.
17158 17159 17160 17161 |
# File 'quick_sight/cfn_template.rb', line 17158 def initialize(display_mode:) @display_mode = display_mode Jsii::Type.check_type(@display_mode, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "displayMode") end |
Instance Attribute Details
#display_mode ⇒ String (readonly)
Determines the display mode of the negative value configuration.
17167 17168 17169 |
# File 'quick_sight/cfn_template.rb', line 17167 def display_mode @display_mode end |
Class Method Details
.jsii_properties ⇒ Object
17169 17170 17171 17172 17173 |
# File 'quick_sight/cfn_template.rb', line 17169 def self.jsii_properties { :display_mode => "displayMode", } end |
Instance Method Details
#to_jsii ⇒ Object
17175 17176 17177 17178 17179 17180 17181 |
# File 'quick_sight/cfn_template.rb', line 17175 def to_jsii result = {} result.merge!({ "displayMode" => @display_mode, }) result.compact end |