Class: AWSCDK::QuickSight::CfnAnalysis::SheetControlLayoutProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::SheetControlLayoutProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
A grid layout to define the placement of sheet control.
Instance Attribute Summary collapse
-
#configuration ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnAnalysis::SheetControlLayoutConfigurationProperty
readonly
The configuration that determines the elements and canvas size options of sheet control.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(configuration:) ⇒ SheetControlLayoutProperty
constructor
A new instance of SheetControlLayoutProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(configuration:) ⇒ SheetControlLayoutProperty
Returns a new instance of SheetControlLayoutProperty.
26036 26037 26038 26039 |
# File 'quick_sight/cfn_analysis.rb', line 26036 def initialize(configuration:) @configuration = configuration.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::SheetControlLayoutConfigurationProperty.new(**configuration.transform_keys(&:to_sym)) : configuration Jsii::Type.check_type(@configuration, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLlNoZWV0Q29udHJvbExheW91dENvbmZpZ3VyYXRpb25Qcm9wZXJ0eSJ9XX19")), "configuration") end |
Instance Attribute Details
#configuration ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnAnalysis::SheetControlLayoutConfigurationProperty (readonly)
The configuration that determines the elements and canvas size options of sheet control.
26045 26046 26047 |
# File 'quick_sight/cfn_analysis.rb', line 26045 def configuration @configuration end |
Class Method Details
.jsii_properties ⇒ Object
26047 26048 26049 26050 26051 |
# File 'quick_sight/cfn_analysis.rb', line 26047 def self.jsii_properties { :configuration => "configuration", } end |
Instance Method Details
#to_jsii ⇒ Object
26053 26054 26055 26056 26057 26058 26059 |
# File 'quick_sight/cfn_analysis.rb', line 26053 def to_jsii result = {} result.merge!({ "configuration" => @configuration, }) result.compact end |