Class: AWSCDK::QuickSight::CfnDashboard::AxisLogarithmicScaleProperty

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



1667
1668
1669
1670
# File 'quick_sight/cfn_dashboard.rb', line 1667

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.



1676
1677
1678
# File 'quick_sight/cfn_dashboard.rb', line 1676

def base
  @base
end

Class Method Details

.jsii_propertiesObject



1678
1679
1680
1681
1682
# File 'quick_sight/cfn_dashboard.rb', line 1678

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

Instance Method Details

#to_jsiiObject



1684
1685
1686
1687
1688
1689
1690
# File 'quick_sight/cfn_dashboard.rb', line 1684

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