Class: AWSCDK::QuickSight::CfnTemplate::SectionLayoutConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::SectionLayoutConfigurationProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
The layout configuration of a section.
Instance Attribute Summary collapse
-
#free_form_layout ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnTemplate::FreeFormSectionLayoutConfigurationProperty
readonly
The free-form layout configuration of a section.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(free_form_layout:) ⇒ SectionLayoutConfigurationProperty
constructor
A new instance of SectionLayoutConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(free_form_layout:) ⇒ SectionLayoutConfigurationProperty
Returns a new instance of SectionLayoutConfigurationProperty.
23817 23818 23819 23820 |
# File 'quick_sight/cfn_template.rb', line 23817 def initialize(free_form_layout:) @free_form_layout = free_form_layout.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnTemplate::FreeFormSectionLayoutConfigurationProperty.new(**free_form_layout.transform_keys(&:to_sym)) : free_form_layout Jsii::Type.check_type(@free_form_layout, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmblRlbXBsYXRlLkZyZWVGb3JtU2VjdGlvbkxheW91dENvbmZpZ3VyYXRpb25Qcm9wZXJ0eSJ9XX19")), "freeFormLayout") end |
Instance Attribute Details
#free_form_layout ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnTemplate::FreeFormSectionLayoutConfigurationProperty (readonly)
The free-form layout configuration of a section.
23826 23827 23828 |
# File 'quick_sight/cfn_template.rb', line 23826 def free_form_layout @free_form_layout end |
Class Method Details
.jsii_properties ⇒ Object
23828 23829 23830 23831 23832 |
# File 'quick_sight/cfn_template.rb', line 23828 def self.jsii_properties { :free_form_layout => "freeFormLayout", } end |
Instance Method Details
#to_jsii ⇒ Object
23834 23835 23836 23837 23838 23839 23840 |
# File 'quick_sight/cfn_template.rb', line 23834 def to_jsii result = {} result.merge!({ "freeFormLayout" => @free_form_layout, }) result.compact end |