Class: AWSCDK::QuickSight::CfnTemplate::BinCountOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::BinCountOptionsProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
The options that determine the bin count of a histogram.
Instance Attribute Summary collapse
-
#value ⇒ Numeric?
readonly
The options that determine the bin count value.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(value: nil) ⇒ BinCountOptionsProperty
constructor
A new instance of BinCountOptionsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(value: nil) ⇒ BinCountOptionsProperty
Returns a new instance of BinCountOptionsProperty.
2131 2132 2133 2134 |
# File 'quick_sight/cfn_template.rb', line 2131 def initialize(value: nil) @value = value Jsii::Type.check_type(@value, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJudW1iZXIifQ==")), "value") unless @value.nil? end |
Instance Attribute Details
#value ⇒ Numeric? (readonly)
The options that determine the bin count value.
2140 2141 2142 |
# File 'quick_sight/cfn_template.rb', line 2140 def value @value end |
Class Method Details
.jsii_properties ⇒ Object
2142 2143 2144 2145 2146 |
# File 'quick_sight/cfn_template.rb', line 2142 def self.jsii_properties { :value => "value", } end |
Instance Method Details
#to_jsii ⇒ Object
2148 2149 2150 2151 2152 2153 2154 |
# File 'quick_sight/cfn_template.rb', line 2148 def to_jsii result = {} result.merge!({ "value" => @value, }) result.compact end |