Class: AWSCDK::QuickSight::CfnAnalysis::ReferenceLineStaticDataConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::ReferenceLineStaticDataConfigurationProperty
- Defined in:
- quick_sight/cfn_analysis.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.
24152 24153 24154 24155 |
# File 'quick_sight/cfn_analysis.rb', line 24152 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.
24162 24163 24164 |
# File 'quick_sight/cfn_analysis.rb', line 24162 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
24164 24165 24166 24167 24168 |
# File 'quick_sight/cfn_analysis.rb', line 24164 def self.jsii_properties { :value => "value", } end |
Instance Method Details
#to_jsii ⇒ Object
24170 24171 24172 24173 24174 24175 24176 |
# File 'quick_sight/cfn_analysis.rb', line 24170 def to_jsii result = {} result.merge!({ "value" => @value, }) result.compact end |