Class: Aws::QuickSight::Types::SheetImageScalingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::SheetImageScalingConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
Determines how the image is scaled
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#scaling_type ⇒ String
The scaling option to use when fitting the image inside the container.
Instance Attribute Details
#scaling_type ⇒ String
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.
29582 29583 29584 29585 29586 |
# File 'lib/aws-sdk-quicksight/types.rb', line 29582 class SheetImageScalingConfiguration < Struct.new( :scaling_type) SENSITIVE = [] include Aws::Structure end |