Interface CfnTemplate.GeospatialWindowOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.GeospatialWindowOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.GeospatialWindowOptionsProperty
extends software.amazon.jsii.JsiiSerializable
The window options of the geospatial map visual.
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.*;
GeospatialWindowOptionsProperty geospatialWindowOptionsProperty = GeospatialWindowOptionsProperty.builder()
.bounds(GeospatialCoordinateBoundsProperty.builder()
.east(123)
.north(123)
.south(123)
.west(123)
.build())
.mapZoomMode("mapZoomMode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.GeospatialWindowOptionsPropertystatic final classAn implementation forCfnTemplate.GeospatialWindowOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBounds
The bounds options (north, south, west, east) of the geospatial window options.Returns union: either
IResolvableorCfnTemplate.GeospatialCoordinateBoundsProperty- See Also:
-
getMapZoomMode
The map zoom modes (manual, auto) of the geospatial window options.- See Also:
-
builder
-