Class: AWSCDK::QuickSight::CfnAnalysis::ScatterPlotSortConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::ScatterPlotSortConfigurationProperty
- Defined in:
- quick_sight/cfn_analysis.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.
25225 25226 25227 25228 |
# File 'quick_sight/cfn_analysis.rb', line 25225 def initialize(scatter_plot_limit_configuration: nil) @scatter_plot_limit_configuration = scatter_plot_limit_configuration.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::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("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLkl0ZW1zTGltaXRDb25maWd1cmF0aW9uUHJvcGVydHkifV19fQ==")), "scatterPlotLimitConfiguration") unless @scatter_plot_limit_configuration.nil? end |
Instance Attribute Details
#scatter_plot_limit_configuration ⇒ AWSCDK::IResolvable, ... (readonly)
25232 25233 25234 |
# File 'quick_sight/cfn_analysis.rb', line 25232 def scatter_plot_limit_configuration @scatter_plot_limit_configuration end |
Class Method Details
.jsii_properties ⇒ Object
25234 25235 25236 25237 25238 |
# File 'quick_sight/cfn_analysis.rb', line 25234 def self.jsii_properties { :scatter_plot_limit_configuration => "scatterPlotLimitConfiguration", } end |
Instance Method Details
#to_jsii ⇒ Object
25240 25241 25242 25243 25244 25245 25246 |
# File 'quick_sight/cfn_analysis.rb', line 25240 def to_jsii result = {} result.merge!({ "scatterPlotLimitConfiguration" => @scatter_plot_limit_configuration, }) result.compact end |