Class: AWSCDK::QuickSight::CfnTemplate::ScatterPlotSortConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::ScatterPlotSortConfigurationProperty
- Defined in:
- quick_sight/cfn_template.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.
23351 23352 23353 23354 |
# File 'quick_sight/cfn_template.rb', line 23351 def initialize(scatter_plot_limit_configuration: nil) @scatter_plot_limit_configuration = scatter_plot_limit_configuration.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnTemplate::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("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmblRlbXBsYXRlLkl0ZW1zTGltaXRDb25maWd1cmF0aW9uUHJvcGVydHkifV19fQ==")), "scatterPlotLimitConfiguration") unless @scatter_plot_limit_configuration.nil? end |
Instance Attribute Details
#scatter_plot_limit_configuration ⇒ AWSCDK::IResolvable, ... (readonly)
23358 23359 23360 |
# File 'quick_sight/cfn_template.rb', line 23358 def scatter_plot_limit_configuration @scatter_plot_limit_configuration end |
Class Method Details
.jsii_properties ⇒ Object
23360 23361 23362 23363 23364 |
# File 'quick_sight/cfn_template.rb', line 23360 def self.jsii_properties { :scatter_plot_limit_configuration => "scatterPlotLimitConfiguration", } end |
Instance Method Details
#to_jsii ⇒ Object
23366 23367 23368 23369 23370 23371 23372 |
# File 'quick_sight/cfn_template.rb', line 23366 def to_jsii result = {} result.merge!({ "scatterPlotLimitConfiguration" => @scatter_plot_limit_configuration, }) result.compact end |