Class: AWSCDK::QuickSight::CfnAnalysis::GridLayoutCanvasSizeOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::GridLayoutCanvasSizeOptionsProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
Configuration options for the canvas of a grid layout.
Instance Attribute Summary collapse
-
#screen_canvas_size_options ⇒ AWSCDK::IResolvable, ...
readonly
The options that determine the sizing of the canvas used in a grid layout.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(screen_canvas_size_options: nil) ⇒ GridLayoutCanvasSizeOptionsProperty
constructor
A new instance of GridLayoutCanvasSizeOptionsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(screen_canvas_size_options: nil) ⇒ GridLayoutCanvasSizeOptionsProperty
Returns a new instance of GridLayoutCanvasSizeOptionsProperty.
14672 14673 14674 14675 |
# File 'quick_sight/cfn_analysis.rb', line 14672 def initialize(screen_canvas_size_options: nil) @screen_canvas_size_options = .is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::GridLayoutScreenCanvasSizeOptionsProperty.new(**.transform_keys(&:to_sym)) : Jsii::Type.check_type(@screen_canvas_size_options, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLkdyaWRMYXlvdXRTY3JlZW5DYW52YXNTaXplT3B0aW9uc1Byb3BlcnR5In1dfX0=")), "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 grid layout.
14681 14682 14683 |
# File 'quick_sight/cfn_analysis.rb', line 14681 def @screen_canvas_size_options end |
Class Method Details
.jsii_properties ⇒ Object
14683 14684 14685 14686 14687 |
# File 'quick_sight/cfn_analysis.rb', line 14683 def self.jsii_properties { :screen_canvas_size_options => "screenCanvasSizeOptions", } end |
Instance Method Details
#to_jsii ⇒ Object
14689 14690 14691 14692 14693 14694 14695 |
# File 'quick_sight/cfn_analysis.rb', line 14689 def to_jsii result = {} result.merge!({ "screenCanvasSizeOptions" => @screen_canvas_size_options, }) result.compact end |