Class: AWSCDK::QuickSight::CfnDashboard::SankeyDiagramFieldWellsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::SankeyDiagramFieldWellsProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The field well configuration of a sankey diagram.
Instance Attribute Summary collapse
-
#sankey_diagram_aggregated_field_wells ⇒ AWSCDK::IResolvable, ...
readonly
The field well configuration of a sankey diagram.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(sankey_diagram_aggregated_field_wells: nil) ⇒ SankeyDiagramFieldWellsProperty
constructor
A new instance of SankeyDiagramFieldWellsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(sankey_diagram_aggregated_field_wells: nil) ⇒ SankeyDiagramFieldWellsProperty
Returns a new instance of SankeyDiagramFieldWellsProperty.
25765 25766 25767 25768 |
# File 'quick_sight/cfn_dashboard.rb', line 25765 def initialize(sankey_diagram_aggregated_field_wells: nil) @sankey_diagram_aggregated_field_wells = sankey_diagram_aggregated_field_wells.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnDashboard::SankeyDiagramAggregatedFieldWellsProperty.new(**sankey_diagram_aggregated_field_wells.transform_keys(&:to_sym)) : sankey_diagram_aggregated_field_wells Jsii::Type.check_type(@sankey_diagram_aggregated_field_wells, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkRhc2hib2FyZC5TYW5rZXlEaWFncmFtQWdncmVnYXRlZEZpZWxkV2VsbHNQcm9wZXJ0eSJ9XX19")), "sankeyDiagramAggregatedFieldWells") unless @sankey_diagram_aggregated_field_wells.nil? end |
Instance Attribute Details
#sankey_diagram_aggregated_field_wells ⇒ AWSCDK::IResolvable, ... (readonly)
The field well configuration of a sankey diagram.
25774 25775 25776 |
# File 'quick_sight/cfn_dashboard.rb', line 25774 def sankey_diagram_aggregated_field_wells @sankey_diagram_aggregated_field_wells end |
Class Method Details
.jsii_properties ⇒ Object
25776 25777 25778 25779 25780 |
# File 'quick_sight/cfn_dashboard.rb', line 25776 def self.jsii_properties { :sankey_diagram_aggregated_field_wells => "sankeyDiagramAggregatedFieldWells", } end |
Instance Method Details
#to_jsii ⇒ Object
25782 25783 25784 25785 25786 25787 25788 |
# File 'quick_sight/cfn_dashboard.rb', line 25782 def to_jsii result = {} result.merge!({ "sankeyDiagramAggregatedFieldWells" => @sankey_diagram_aggregated_field_wells, }) result.compact end |