Class: Aws::QuickSight::Types::LayoutConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::LayoutConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
The configuration that determines what the type of layout will be used on a sheet.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#free_form_layout ⇒ Types::FreeFormLayoutConfiguration
A free-form is optimized for a fixed width and has more control over the exact placement of layout elements.
-
#grid_layout ⇒ Types::GridLayoutConfiguration
A type of layout that can be used on a sheet.
-
#section_based_layout ⇒ Types::SectionBasedLayoutConfiguration
A section based layout organizes visuals into multiple sections and has customized header, footer and page break.
Instance Attribute Details
#free_form_layout ⇒ Types::FreeFormLayoutConfiguration
A free-form is optimized for a fixed width and has more control over the exact placement of layout elements.
19682 19683 19684 19685 19686 19687 19688 |
# File 'lib/aws-sdk-quicksight/types.rb', line 19682 class LayoutConfiguration < Struct.new( :grid_layout, :free_form_layout, :section_based_layout) SENSITIVE = [] include Aws::Structure end |
#grid_layout ⇒ Types::GridLayoutConfiguration
A type of layout that can be used on a sheet. In a grid layout, visuals snap to a grid with standard spacing and alignment. Dashboards are displayed as designed, with options to fit to screen or view at actual size. A grid layout can be configured to behave in one of two ways when the viewport is resized: ‘FIXED` or `RESPONSIVE`.
19682 19683 19684 19685 19686 19687 19688 |
# File 'lib/aws-sdk-quicksight/types.rb', line 19682 class LayoutConfiguration < Struct.new( :grid_layout, :free_form_layout, :section_based_layout) SENSITIVE = [] include Aws::Structure end |
#section_based_layout ⇒ Types::SectionBasedLayoutConfiguration
A section based layout organizes visuals into multiple sections and has customized header, footer and page break.
19682 19683 19684 19685 19686 19687 19688 |
# File 'lib/aws-sdk-quicksight/types.rb', line 19682 class LayoutConfiguration < Struct.new( :grid_layout, :free_form_layout, :section_based_layout) SENSITIVE = [] include Aws::Structure end |