Class: AWSCDK::QuickSight::CfnDashboard::ScatterPlotSortConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::ScatterPlotSortConfigurationProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The sort configuration of a scatter plot.
Instance Attribute Summary collapse
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(scatter_plot_limit_configuration: nil) ⇒ ScatterPlotSortConfigurationProperty
constructor
A new instance of ScatterPlotSortConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(scatter_plot_limit_configuration: nil) ⇒ ScatterPlotSortConfigurationProperty
Returns a new instance of ScatterPlotSortConfigurationProperty.
26197 26198 26199 26200 |
# File 'quick_sight/cfn_dashboard.rb', line 26197 def initialize(scatter_plot_limit_configuration: nil) @scatter_plot_limit_configuration = scatter_plot_limit_configuration.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnDashboard::ItemsLimitConfigurationProperty.new(**scatter_plot_limit_configuration.transform_keys(&:to_sym)) : scatter_plot_limit_configuration Jsii::Type.check_type(@scatter_plot_limit_configuration, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkRhc2hib2FyZC5JdGVtc0xpbWl0Q29uZmlndXJhdGlvblByb3BlcnR5In1dfX0=")), "scatterPlotLimitConfiguration") unless @scatter_plot_limit_configuration.nil? end |
Instance Attribute Details
#scatter_plot_limit_configuration ⇒ AWSCDK::IResolvable, ... (readonly)
26204 26205 26206 |
# File 'quick_sight/cfn_dashboard.rb', line 26204 def scatter_plot_limit_configuration @scatter_plot_limit_configuration end |
Class Method Details
.jsii_properties ⇒ Object
26206 26207 26208 26209 26210 |
# File 'quick_sight/cfn_dashboard.rb', line 26206 def self.jsii_properties { :scatter_plot_limit_configuration => "scatterPlotLimitConfiguration", } end |
Instance Method Details
#to_jsii ⇒ Object
26212 26213 26214 26215 26216 26217 26218 |
# File 'quick_sight/cfn_dashboard.rb', line 26212 def to_jsii result = {} result.merge!({ "scatterPlotLimitConfiguration" => @scatter_plot_limit_configuration, }) result.compact end |