Class: AWSCDK::QuickSight::CfnAnalysis::AxisLogarithmicScaleProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::AxisLogarithmicScaleProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
The logarithmic axis scale setup.
Instance Attribute Summary collapse
-
#base ⇒ Numeric?
readonly
The base setup of a logarithmic axis scale.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(base: nil) ⇒ AxisLogarithmicScaleProperty
constructor
A new instance of AxisLogarithmicScaleProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(base: nil) ⇒ AxisLogarithmicScaleProperty
Returns a new instance of AxisLogarithmicScaleProperty.
1801 1802 1803 1804 |
# File 'quick_sight/cfn_analysis.rb', line 1801 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
#base ⇒ Numeric? (readonly)
The base setup of a logarithmic axis scale.
1810 1811 1812 |
# File 'quick_sight/cfn_analysis.rb', line 1810 def base @base end |
Class Method Details
.jsii_properties ⇒ Object
1812 1813 1814 1815 1816 |
# File 'quick_sight/cfn_analysis.rb', line 1812 def self.jsii_properties { :base => "base", } end |
Instance Method Details
#to_jsii ⇒ Object
1818 1819 1820 1821 1822 1823 1824 |
# File 'quick_sight/cfn_analysis.rb', line 1818 def to_jsii result = {} result.merge!({ "base" => @base, }) result.compact end |