Class: AWSCDK::QuickSight::CfnTemplate::AxisLogarithmicScaleProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::AxisLogarithmicScaleProperty
- Defined in:
- quick_sight/cfn_template.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.
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
#base ⇒ Numeric? (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_properties ⇒ Object
1534 1535 1536 1537 1538 |
# File 'quick_sight/cfn_template.rb', line 1534 def self.jsii_properties { :base => "base", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |