Interface CfnAnalysis.SheetImageScalingConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.SheetImageScalingConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.SheetImageScalingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Determines how the image is scaled.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
SheetImageScalingConfigurationProperty sheetImageScalingConfigurationProperty = SheetImageScalingConfigurationProperty.builder()
.scalingType("scalingType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.SheetImageScalingConfigurationPropertystatic final classAn implementation forCfnAnalysis.SheetImageScalingConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getScalingType
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.
- See Also:
-
builder
-