Class: AWSCDK::QuickSight::CfnDashboard::BinCountOptionsProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_dashboard.rb

Overview

The options that determine the bin count of a histogram.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value: nil) ⇒ BinCountOptionsProperty

Returns a new instance of BinCountOptionsProperty.

Parameters:

  • value (Numeric, nil) (defaults to: nil)

    The options that determine the bin count value.



2275
2276
2277
2278
# File 'quick_sight/cfn_dashboard.rb', line 2275

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

#valueNumeric? (readonly)

The options that determine the bin count value.



2284
2285
2286
# File 'quick_sight/cfn_dashboard.rb', line 2284

def value
  @value
end

Class Method Details

.jsii_propertiesObject



2286
2287
2288
2289
2290
# File 'quick_sight/cfn_dashboard.rb', line 2286

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

Instance Method Details

#to_jsiiObject



2292
2293
2294
2295
2296
2297
2298
# File 'quick_sight/cfn_dashboard.rb', line 2292

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