Class: AWSCDK::QuickSight::CfnDashboard::HistogramFieldWellsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::HistogramFieldWellsProperty
- Defined in:
- quick_sight/cfn_dashboard.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.
16515 16516 16517 16518 |
# File 'quick_sight/cfn_dashboard.rb', line 16515 def initialize(histogram_aggregated_field_wells: nil) @histogram_aggregated_field_wells = histogram_aggregated_field_wells.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnDashboard::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("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkRhc2hib2FyZC5IaXN0b2dyYW1BZ2dyZWdhdGVkRmllbGRXZWxsc1Byb3BlcnR5In1dfX0=")), "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.
16524 16525 16526 |
# File 'quick_sight/cfn_dashboard.rb', line 16524 def histogram_aggregated_field_wells @histogram_aggregated_field_wells end |
Class Method Details
.jsii_properties ⇒ Object
16526 16527 16528 16529 16530 |
# File 'quick_sight/cfn_dashboard.rb', line 16526 def self.jsii_properties { :histogram_aggregated_field_wells => "histogramAggregatedFieldWells", } end |
Instance Method Details
#to_jsii ⇒ Object
16532 16533 16534 16535 16536 16537 16538 |
# File 'quick_sight/cfn_dashboard.rb', line 16532 def to_jsii result = {} result.merge!({ "histogramAggregatedFieldWells" => @histogram_aggregated_field_wells, }) result.compact end |