Class: Aws::QuickSight::Types::GridLayoutScreenCanvasSizeOptions

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-quicksight/types.rb

Overview

The options that determine the sizing of the canvas used in a grid layout.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#optimized_view_port_widthString

The width that the view port will be optimized for when the layout renders.

Returns:

  • (String)


17102
17103
17104
17105
17106
17107
# File 'lib/aws-sdk-quicksight/types.rb', line 17102

class GridLayoutScreenCanvasSizeOptions < Struct.new(
  :resize_option,
  :optimized_view_port_width)
  SENSITIVE = []
  include Aws::Structure
end

#resize_optionString

This value determines the layout behavior when the viewport is resized.

  • ‘FIXED`: A fixed width will be used when optimizing the layout. In the Amazon QuickSight console, this option is called `Classic`.

  • ‘RESPONSIVE`: The width of the canvas will be responsive and optimized to the view port. In the Amazon QuickSight console, this option is called `Tiled`.

Returns:

  • (String)


17102
17103
17104
17105
17106
17107
# File 'lib/aws-sdk-quicksight/types.rb', line 17102

class GridLayoutScreenCanvasSizeOptions < Struct.new(
  :resize_option,
  :optimized_view_port_width)
  SENSITIVE = []
  include Aws::Structure
end