Class: AWSCDK::QuickSight::CfnTemplate::ReferenceLineStaticDataConfigurationProperty

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



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

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



22290
22291
22292
22293
22294
# File 'quick_sight/cfn_template.rb', line 22290

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

Instance Method Details

#to_jsiiObject



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