Class: AWSCDK::QuickSight::CfnTemplate::ReferenceLineStaticDataConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::ReferenceLineStaticDataConfigurationProperty
- Defined in:
- quick_sight/cfn_template.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.
22278 22279 22280 22281 |
# File 'quick_sight/cfn_template.rb', line 22278 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.
22288 22289 22290 |
# File 'quick_sight/cfn_template.rb', line 22288 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
22290 22291 22292 22293 22294 |
# File 'quick_sight/cfn_template.rb', line 22290 def self.jsii_properties { :value => "value", } end |
Instance Method Details
#to_jsii ⇒ Object
22296 22297 22298 22299 22300 22301 22302 |
# File 'quick_sight/cfn_template.rb', line 22296 def to_jsii result = {} result.merge!({ "value" => @value, }) result.compact end |