Class: AWSCDK::QuickSight::CfnTemplate::HistogramFieldWellsProperty

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



14069
14070
14071
14072
# File 'quick_sight/cfn_template.rb', line 14069

def initialize(histogram_aggregated_field_wells: nil)
  @histogram_aggregated_field_wells = histogram_aggregated_field_wells.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnTemplate::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("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmblRlbXBsYXRlLkhpc3RvZ3JhbUFnZ3JlZ2F0ZWRGaWVsZFdlbGxzUHJvcGVydHkifV19fQ==")), "histogramAggregatedFieldWells") unless @histogram_aggregated_field_wells.nil?
end

Instance Attribute Details

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

The field well configuration of a histogram.



14078
14079
14080
# File 'quick_sight/cfn_template.rb', line 14078

def histogram_aggregated_field_wells
  @histogram_aggregated_field_wells
end

Class Method Details

.jsii_propertiesObject



14080
14081
14082
14083
14084
# File 'quick_sight/cfn_template.rb', line 14080

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

Instance Method Details

#to_jsiiObject



14086
14087
14088
14089
14090
14091
14092
# File 'quick_sight/cfn_template.rb', line 14086

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