Interface CfnAnalysis.GeospatialCoordinateBoundsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.GeospatialCoordinateBoundsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.GeospatialCoordinateBoundsProperty
extends software.amazon.jsii.JsiiSerializable
The bound options (north, south, west, east) of the geospatial window options.
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.*; GeospatialCoordinateBoundsProperty geospatialCoordinateBoundsProperty = GeospatialCoordinateBoundsProperty.builder() .east(123) .north(123) .south(123) .west(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAnalysis.GeospatialCoordinateBoundsProperty
static final class
An implementation forCfnAnalysis.GeospatialCoordinateBoundsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
getEast()
The longitude of the east bound of the geospatial coordinate bounds.getNorth()
The latitude of the north bound of the geospatial coordinate bounds.getSouth()
The latitude of the south bound of the geospatial coordinate bounds.getWest()
The longitude of the west bound of the geospatial coordinate bounds.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEast
The longitude of the east bound of the geospatial coordinate bounds.- See Also:
-
getNorth
The latitude of the north bound of the geospatial coordinate bounds.- See Also:
-
getSouth
The latitude of the south bound of the geospatial coordinate bounds.- See Also:
-
getWest
The longitude of the west bound of the geospatial coordinate bounds.- See Also:
-
builder
-