Class: AWSCDK::QuickSight::CfnAnalysis::ReferenceLineStaticDataConfigurationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_analysis.rb

Overview

The static data configuration of the reference line data configuration.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value:) ⇒ ReferenceLineStaticDataConfigurationProperty

Returns a new instance of ReferenceLineStaticDataConfigurationProperty.

Parameters:

  • value (Numeric)

    The double input of the static data.



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

#valueNumeric (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_propertiesObject



24164
24165
24166
24167
24168
# File 'quick_sight/cfn_analysis.rb', line 24164

def self.jsii_properties
  {
    :value => "value",
  }
end

Instance Method Details

#to_jsiiObject



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