interface GeospatialCoordinateBoundsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTemplatePropsMixin.GeospatialCoordinateBoundsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTemplatePropsMixin_GeospatialCoordinateBoundsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTemplatePropsMixin.GeospatialCoordinateBoundsProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTemplatePropsMixin.GeospatialCoordinateBoundsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnTemplatePropsMixin » 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/cfn-property-mixins';
const geospatialCoordinateBoundsProperty: quicksight.CfnTemplatePropsMixin.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
(optional)
The longitude of the east bound of the geospatial coordinate bounds.
north?
Type:
number
(optional)
The latitude of the north bound of the geospatial coordinate bounds.
south?
Type:
number
(optional)
The latitude of the south bound of the geospatial coordinate bounds.
west?
Type:
number
(optional)
The longitude of the west bound of the geospatial coordinate bounds.

.NET
Go
Java
Python
TypeScript