Class: AWSCDK::QuickSight::CfnTemplate::AxisLogarithmicScaleProperty

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

Overview

The logarithmic axis scale setup.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(base: nil) ⇒ AxisLogarithmicScaleProperty

Returns a new instance of AxisLogarithmicScaleProperty.

Parameters:

  • base (Numeric, nil) (defaults to: nil)

    The base setup of a logarithmic axis scale.



1523
1524
1525
1526
# File 'quick_sight/cfn_template.rb', line 1523

def initialize(base: nil)
  @base = base
  Jsii::Type.check_type(@base, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJudW1iZXIifQ==")), "base") unless @base.nil?
end

Instance Attribute Details

#baseNumeric? (readonly)

The base setup of a logarithmic axis scale.



1532
1533
1534
# File 'quick_sight/cfn_template.rb', line 1532

def base
  @base
end

Class Method Details

.jsii_propertiesObject



1534
1535
1536
1537
1538
# File 'quick_sight/cfn_template.rb', line 1534

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

Instance Method Details

#to_jsiiObject



1540
1541
1542
1543
1544
1545
1546
# File 'quick_sight/cfn_template.rb', line 1540

def to_jsii
  result = {}
  result.merge!({
    "base" => @base,
  })
  result.compact
end