Interface CfnAnalysisPropsMixin.GeospatialCoordinateBoundsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysisPropsMixin.GeospatialCoordinateBoundsProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysisPropsMixin
@Stability(Stable)
public static interface CfnAnalysisPropsMixin.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.cfnpropertymixins.services.quicksight.*;
GeospatialCoordinateBoundsProperty geospatialCoordinateBoundsProperty = GeospatialCoordinateBoundsProperty.builder()
.east(123)
.north(123)
.south(123)
.west(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysisPropsMixin.GeospatialCoordinateBoundsPropertystatic final classAn implementation forCfnAnalysisPropsMixin.GeospatialCoordinateBoundsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumbergetEast()The longitude of the east bound of the geospatial coordinate bounds.default NumbergetNorth()The latitude of the north bound of the geospatial coordinate bounds.default NumbergetSouth()The latitude of the south bound of the geospatial coordinate bounds.default NumbergetWest()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
@Stability(Stable) static CfnAnalysisPropsMixin.GeospatialCoordinateBoundsProperty.Builder builder()
-