Class: AWSCDK::QuickSight::CfnAnalysis::BinCountOptionsProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_analysis.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.



2409
2410
2411
2412
# File 'quick_sight/cfn_analysis.rb', line 2409

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.



2418
2419
2420
# File 'quick_sight/cfn_analysis.rb', line 2418

def value
  @value
end

Class Method Details

.jsii_propertiesObject



2420
2421
2422
2423
2424
# File 'quick_sight/cfn_analysis.rb', line 2420

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

Instance Method Details

#to_jsiiObject



2426
2427
2428
2429
2430
2431
2432
# File 'quick_sight/cfn_analysis.rb', line 2426

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