Class: AWSCDK::QuickSight::CfnDashboard::ReferenceLineStaticDataConfigurationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_dashboard.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.



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

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



25136
25137
25138
25139
25140
# File 'quick_sight/cfn_dashboard.rb', line 25136

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

Instance Method Details

#to_jsiiObject



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