Class: AWSCDK::QuickSight::CfnAnalysis::FreeFormLayoutCanvasSizeOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::FreeFormLayoutCanvasSizeOptionsProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
Configuration options for the canvas of a free-form layout.
Instance Attribute Summary collapse
-
#screen_canvas_size_options ⇒ AWSCDK::IResolvable, ...
readonly
The options that determine the sizing of the canvas used in a free-form layout.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(screen_canvas_size_options: nil) ⇒ FreeFormLayoutCanvasSizeOptionsProperty
constructor
A new instance of FreeFormLayoutCanvasSizeOptionsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(screen_canvas_size_options: nil) ⇒ FreeFormLayoutCanvasSizeOptionsProperty
Returns a new instance of FreeFormLayoutCanvasSizeOptionsProperty.
11364 11365 11366 11367 |
# File 'quick_sight/cfn_analysis.rb', line 11364 def initialize(screen_canvas_size_options: nil) @screen_canvas_size_options = .is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::FreeFormLayoutScreenCanvasSizeOptionsProperty.new(**.transform_keys(&:to_sym)) : Jsii::Type.check_type(@screen_canvas_size_options, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLkZyZWVGb3JtTGF5b3V0U2NyZWVuQ2FudmFzU2l6ZU9wdGlvbnNQcm9wZXJ0eSJ9XX19")), "screenCanvasSizeOptions") unless @screen_canvas_size_options.nil? end |
Instance Attribute Details
#screen_canvas_size_options ⇒ AWSCDK::IResolvable, ... (readonly)
The options that determine the sizing of the canvas used in a free-form layout.
11373 11374 11375 |
# File 'quick_sight/cfn_analysis.rb', line 11373 def @screen_canvas_size_options end |
Class Method Details
.jsii_properties ⇒ Object
11375 11376 11377 11378 11379 |
# File 'quick_sight/cfn_analysis.rb', line 11375 def self.jsii_properties { :screen_canvas_size_options => "screenCanvasSizeOptions", } end |
Instance Method Details
#to_jsii ⇒ Object
11381 11382 11383 11384 11385 11386 11387 |
# File 'quick_sight/cfn_analysis.rb', line 11381 def to_jsii result = {} result.merge!({ "screenCanvasSizeOptions" => @screen_canvas_size_options, }) result.compact end |