Class: Aws::QuickSight::Types::LayoutConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#free_form_layoutTypes::FreeFormLayoutConfiguration

A free-form is optimized for a fixed width and has more control over the exact placement of layout elements.



21352
21353
21354
21355
21356
21357
21358
# File 'lib/aws-sdk-quicksight/types.rb', line 21352

class LayoutConfiguration < Struct.new(
  :grid_layout,
  :free_form_layout,
  :section_based_layout)
  SENSITIVE = []
  include Aws::Structure
end

#grid_layoutTypes::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`.



21352
21353
21354
21355
21356
21357
21358
# File 'lib/aws-sdk-quicksight/types.rb', line 21352

class LayoutConfiguration < Struct.new(
  :grid_layout,
  :free_form_layout,
  :section_based_layout)
  SENSITIVE = []
  include Aws::Structure
end

#section_based_layoutTypes::SectionBasedLayoutConfiguration

A section based layout organizes visuals into multiple sections and has customized header, footer and page break.



21352
21353
21354
21355
21356
21357
21358
# File 'lib/aws-sdk-quicksight/types.rb', line 21352

class LayoutConfiguration < Struct.new(
  :grid_layout,
  :free_form_layout,
  :section_based_layout)
  SENSITIVE = []
  include Aws::Structure
end