Class: AWSCDK::QuickSight::CfnTemplate::HistogramFieldWellsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::HistogramFieldWellsProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
The field well configuration of a histogram.
Instance Attribute Summary collapse
-
#histogram_aggregated_field_wells ⇒ AWSCDK::IResolvable, ...
readonly
The field well configuration of a histogram.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(histogram_aggregated_field_wells: nil) ⇒ HistogramFieldWellsProperty
constructor
A new instance of HistogramFieldWellsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(histogram_aggregated_field_wells: nil) ⇒ HistogramFieldWellsProperty
Returns a new instance of HistogramFieldWellsProperty.
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_wells ⇒ AWSCDK::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_properties ⇒ Object
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_jsii ⇒ Object
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 |