Interface CfnTemplate.GeospatialCoordinateBoundsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTemplate.GeospatialCoordinateBoundsProperty.Jsii$Proxy
Enclosing class:
CfnTemplate

@Stability(Stable) public static interface CfnTemplate.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: