interface GeospatialCoordinateBoundsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.GeospatialCoordinateBoundsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_GeospatialCoordinateBoundsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.GeospatialCoordinateBoundsProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.GeospatialCoordinateBoundsProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » GeospatialCoordinateBoundsProperty |
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const geospatialCoordinateBoundsProperty: quicksight.CfnAnalysis.GeospatialCoordinateBoundsProperty = {
east: 123,
north: 123,
south: 123,
west: 123,
};
Properties
Name | Type | Description |
---|---|---|
east | number | The longitude of the east bound of the geospatial coordinate bounds. |
north | number | The latitude of the north bound of the geospatial coordinate bounds. |
south | number | The latitude of the south bound of the geospatial coordinate bounds. |
west | number | The longitude of the west bound of the geospatial coordinate bounds. |
east
Type:
number
The longitude of the east bound of the geospatial coordinate bounds.
north
Type:
number
The latitude of the north bound of the geospatial coordinate bounds.
south
Type:
number
The latitude of the south bound of the geospatial coordinate bounds.
west
Type:
number
The longitude of the west bound of the geospatial coordinate bounds.