Class: AWSCDK::QuickSight::CfnDashboard::AxisLogarithmicScaleProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::AxisLogarithmicScaleProperty
- Defined in:
- quick_sight/cfn_dashboard.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.
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
#base ⇒ Numeric? (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_properties ⇒ Object
1678 1679 1680 1681 1682 |
# File 'quick_sight/cfn_dashboard.rb', line 1678 def self.jsii_properties { :base => "base", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |