Class: AWSCDK::QuickSight::CfnDashboard::ReferenceLineStaticDataConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::ReferenceLineStaticDataConfigurationProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The static data configuration of the reference line data configuration.
Instance Attribute Summary collapse
-
#value ⇒ Numeric
readonly
The double input of the static data.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(value:) ⇒ ReferenceLineStaticDataConfigurationProperty
constructor
A new instance of ReferenceLineStaticDataConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(value:) ⇒ ReferenceLineStaticDataConfigurationProperty
Returns a new instance of ReferenceLineStaticDataConfigurationProperty.
25124 25125 25126 25127 |
# File 'quick_sight/cfn_dashboard.rb', line 25124 def initialize(value:) @value = value Jsii::Type.check_type(@value, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJudW1iZXIifQ==")), "value") end |
Instance Attribute Details
#value ⇒ Numeric (readonly)
Note:
Default: - 0
The double input of the static data.
25134 25135 25136 |
# File 'quick_sight/cfn_dashboard.rb', line 25134 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
25136 25137 25138 25139 25140 |
# File 'quick_sight/cfn_dashboard.rb', line 25136 def self.jsii_properties { :value => "value", } end |
Instance Method Details
#to_jsii ⇒ Object
25142 25143 25144 25145 25146 25147 25148 |
# File 'quick_sight/cfn_dashboard.rb', line 25142 def to_jsii result = {} result.merge!({ "value" => @value, }) result.compact end |