Class: AWSCDK::QuickSight::CfnAnalysis::HistogramFieldWellsProperty

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

Overview

The field well configuration of a histogram.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(histogram_aggregated_field_wells: nil) ⇒ HistogramFieldWellsProperty

Returns a new instance of HistogramFieldWellsProperty.

Parameters:



15576
15577
15578
15579
# File 'quick_sight/cfn_analysis.rb', line 15576

def initialize(histogram_aggregated_field_wells: nil)
  @histogram_aggregated_field_wells = histogram_aggregated_field_wells.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::HistogramAggregatedFieldWellsProperty.new(**histogram_aggregated_field_wells.transform_keys(&:to_sym)) : histogram_aggregated_field_wells
  Jsii::Type.check_type(@histogram_aggregated_field_wells, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLkhpc3RvZ3JhbUFnZ3JlZ2F0ZWRGaWVsZFdlbGxzUHJvcGVydHkifV19fQ==")), "histogramAggregatedFieldWells") unless @histogram_aggregated_field_wells.nil?
end

Instance Attribute Details

#histogram_aggregated_field_wellsAWSCDK::IResolvable, ... (readonly)

The field well configuration of a histogram.



15585
15586
15587
# File 'quick_sight/cfn_analysis.rb', line 15585

def histogram_aggregated_field_wells
  @histogram_aggregated_field_wells
end

Class Method Details

.jsii_propertiesObject



15587
15588
15589
15590
15591
# File 'quick_sight/cfn_analysis.rb', line 15587

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

Instance Method Details

#to_jsiiObject



15593
15594
15595
15596
15597
15598
15599
# File 'quick_sight/cfn_analysis.rb', line 15593

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