Class: Aws::QuickSight::Types::SheetImageScalingConfiguration

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

Overview

Determines how the image is scaled

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#scaling_typeString

The scaling option to use when fitting the image inside the container.

Valid values are defined as follows:

  • SCALE_TO_WIDTH: The image takes up the entire width of the container. The image aspect ratio is preserved.

  • SCALE_TO_HEIGHT: The image takes up the entire height of the container. The image aspect ratio is preserved.

  • SCALE_TO_CONTAINER: The image takes up the entire width and height of the container. The image aspect ratio is not preserved.

  • SCALE_NONE: The image is displayed in its original size and is not scaled to the container.

Returns:

  • (String)


29582
29583
29584
29585
29586
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 29582

class SheetImageScalingConfiguration < Struct.new(
  :scaling_type)
  SENSITIVE = []
  include Aws::Structure
end