// // Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"). // You may not use this file except in compliance with the License. // A copy of the License is located at // // http://aws.amazon.com/apache2.0 // // or in the "license" file accompanying this file. This file is distributed // on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either // express or implied. See the License for the specific language governing // permissions and limitations under the License. // #import "AWSLocationResources.h" #import @interface AWSLocationResources () @property (nonatomic, strong) NSDictionary *definitionDictionary; @end @implementation AWSLocationResources + (instancetype)sharedInstance { static AWSLocationResources *_sharedResources = nil; static dispatch_once_t once_token; dispatch_once(&once_token, ^{ _sharedResources = [AWSLocationResources new]; }); return _sharedResources; } - (NSDictionary *)JSONObject { return self.definitionDictionary; } - (instancetype)init { if (self = [super init]) { //init method NSError *error = nil; _definitionDictionary = [NSJSONSerialization JSONObjectWithData:[[self definitionString] dataUsingEncoding:NSUTF8StringEncoding] options:kNilOptions error:&error]; if (_definitionDictionary == nil) { if (error) { AWSDDLogError(@"Failed to parse JSON service definition: %@",error); } } } return self; } - (NSString *)definitionString { return @"{\ \"version\":\"2.0\",\ \"metadata\":{\ \"apiVersion\":\"2020-11-19\",\ \"endpointPrefix\":\"geo\",\ \"jsonVersion\":\"1.1\",\ \"protocol\":\"rest-json\",\ \"serviceFullName\":\"Amazon Location Service\",\ \"serviceId\":\"Location\",\ \"signatureVersion\":\"v4\",\ \"signingName\":\"geo\",\ \"uid\":\"location-2020-11-19\"\ },\ \"operations\":{\ \"AssociateTrackerConsumer\":{\ \"name\":\"AssociateTrackerConsumer\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/tracking/v0/trackers/{TrackerName}/consumers\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"AssociateTrackerConsumerRequest\"},\ \"output\":{\"shape\":\"AssociateTrackerConsumerResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"ConflictException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ServiceQuotaExceededException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Creates an association between a geofence collection and a tracker resource. This allows the tracker resource to communicate location data to the linked geofence collection.

You can associate up to five geofence collections to each tracker resource.

Currently not supported — Cross-account configurations, such as creating associations between a tracker resource in one account and a geofence collection in another account.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"}\ },\ \"BatchDeleteDevicePositionHistory\":{\ \"name\":\"BatchDeleteDevicePositionHistory\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/tracking/v0/trackers/{TrackerName}/delete-positions\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"BatchDeleteDevicePositionHistoryRequest\"},\ \"output\":{\"shape\":\"BatchDeleteDevicePositionHistoryResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Deletes the position history of one or more devices from a tracker resource.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"}\ },\ \"BatchDeleteGeofence\":{\ \"name\":\"BatchDeleteGeofence\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/geofencing/v0/collections/{CollectionName}/delete-geofences\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"BatchDeleteGeofenceRequest\"},\ \"output\":{\"shape\":\"BatchDeleteGeofenceResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Deletes a batch of geofences from a geofence collection.

This operation deletes the resource permanently.

\",\ \"endpoint\":{\"hostPrefix\":\"geofencing.\"}\ },\ \"BatchEvaluateGeofences\":{\ \"name\":\"BatchEvaluateGeofences\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/geofencing/v0/collections/{CollectionName}/positions\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"BatchEvaluateGeofencesRequest\"},\ \"output\":{\"shape\":\"BatchEvaluateGeofencesResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Evaluates device positions against the geofence geometries from a given geofence collection.

This operation always returns an empty response because geofences are asynchronously evaluated. The evaluation determines if the device has entered or exited a geofenced area, and then publishes one of the following events to Amazon EventBridge:

The last geofence that a device was observed within is tracked for 30 days after the most recent device position update.

Geofence evaluation uses the given device position. It does not account for the optional Accuracy of a DevicePositionUpdate.

The DeviceID is used as a string to represent the device. You do not need to have a Tracker associated with the DeviceID.

\",\ \"endpoint\":{\"hostPrefix\":\"geofencing.\"}\ },\ \"BatchGetDevicePosition\":{\ \"name\":\"BatchGetDevicePosition\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/tracking/v0/trackers/{TrackerName}/get-positions\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"BatchGetDevicePositionRequest\"},\ \"output\":{\"shape\":\"BatchGetDevicePositionResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Lists the latest device positions for requested devices.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"}\ },\ \"BatchPutGeofence\":{\ \"name\":\"BatchPutGeofence\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/geofencing/v0/collections/{CollectionName}/put-geofences\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"BatchPutGeofenceRequest\"},\ \"output\":{\"shape\":\"BatchPutGeofenceResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

A batch request for storing geofence geometries into a given geofence collection, or updates the geometry of an existing geofence if a geofence ID is included in the request.

\",\ \"endpoint\":{\"hostPrefix\":\"geofencing.\"}\ },\ \"BatchUpdateDevicePosition\":{\ \"name\":\"BatchUpdateDevicePosition\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/tracking/v0/trackers/{TrackerName}/positions\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"BatchUpdateDevicePositionRequest\"},\ \"output\":{\"shape\":\"BatchUpdateDevicePositionResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Uploads position update data for one or more devices to a tracker resource (up to 10 devices per batch). Amazon Location uses the data when it reports the last known device position and position history. Amazon Location retains location data for 30 days.

Position updates are handled based on the PositionFiltering property of the tracker. When PositionFiltering is set to TimeBased, updates are evaluated against linked geofence collections, and location data is stored at a maximum of one position per 30 second interval. If your update frequency is more often than every 30 seconds, only one update per 30 seconds is stored for each unique device ID.

When PositionFiltering is set to DistanceBased filtering, location data is stored and evaluated against linked geofence collections only if the device has moved more than 30 m (98.4 ft).

When PositionFiltering is set to AccuracyBased filtering, location data is stored and evaluated against linked geofence collections only if the device has moved more than the measured accuracy. For example, if two consecutive updates from a device have a horizontal accuracy of 5 m and 10 m, the second update is neither stored or evaluated if the device has moved less than 15 m. If PositionFiltering is set to AccuracyBased filtering, Amazon Location uses the default value { \\\"Horizontal\\\": 0} when accuracy is not provided on a DevicePositionUpdate.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"}\ },\ \"CalculateRoute\":{\ \"name\":\"CalculateRoute\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/routes/v0/calculators/{CalculatorName}/calculate/route\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"CalculateRouteRequest\"},\ \"output\":{\"shape\":\"CalculateRouteResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Calculates a route given the following required parameters: DeparturePosition and DestinationPosition. Requires that you first create a route calculator resource.

By default, a request that doesn't specify a departure time uses the best time of day to travel with the best traffic conditions when calculating the route.

Additional options include:

\",\ \"endpoint\":{\"hostPrefix\":\"routes.\"}\ },\ \"CalculateRouteMatrix\":{\ \"name\":\"CalculateRouteMatrix\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/routes/v0/calculators/{CalculatorName}/calculate/route-matrix\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"CalculateRouteMatrixRequest\"},\ \"output\":{\"shape\":\"CalculateRouteMatrixResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Calculates a route matrix given the following required parameters: DeparturePositions and DestinationPositions. CalculateRouteMatrix calculates routes and returns the travel time and travel distance from each departure position to each destination position in the request. For example, given departure positions A and B, and destination positions X and Y, CalculateRouteMatrix will return time and distance for routes from A to X, A to Y, B to X, and B to Y (in that order). The number of results returned (and routes calculated) will be the number of DeparturePositions times the number of DestinationPositions.

Your account is charged for each route calculated, not the number of requests.

Requires that you first create a route calculator resource.

By default, a request that doesn't specify a departure time uses the best time of day to travel with the best traffic conditions when calculating routes.

Additional options include:

\",\ \"endpoint\":{\"hostPrefix\":\"routes.\"}\ },\ \"CreateGeofenceCollection\":{\ \"name\":\"CreateGeofenceCollection\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/geofencing/v0/collections\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"CreateGeofenceCollectionRequest\"},\ \"output\":{\"shape\":\"CreateGeofenceCollectionResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ConflictException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ServiceQuotaExceededException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Creates a geofence collection, which manages and stores geofences.

\",\ \"endpoint\":{\"hostPrefix\":\"geofencing.\"},\ \"idempotent\":true\ },\ \"CreateKey\":{\ \"name\":\"CreateKey\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/metadata/v0/keys\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"CreateKeyRequest\"},\ \"output\":{\"shape\":\"CreateKeyResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ConflictException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ServiceQuotaExceededException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Creates an API key resource in your Amazon Web Services account, which lets you grant actions for Amazon Location resources to the API key bearer.

For more information, see Using API keys.

\",\ \"endpoint\":{\"hostPrefix\":\"metadata.\"},\ \"idempotent\":true\ },\ \"CreateMap\":{\ \"name\":\"CreateMap\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/maps/v0/maps\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"CreateMapRequest\"},\ \"output\":{\"shape\":\"CreateMapResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ConflictException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ServiceQuotaExceededException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Creates a map resource in your Amazon Web Services account, which provides map tiles of different styles sourced from global location data providers.

If your application is tracking or routing assets you use in your business, such as delivery vehicles or employees, you must not use Esri as your geolocation provider. See section 82 of the Amazon Web Services service terms for more details.

\",\ \"endpoint\":{\"hostPrefix\":\"maps.\"},\ \"idempotent\":true\ },\ \"CreatePlaceIndex\":{\ \"name\":\"CreatePlaceIndex\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/places/v0/indexes\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"CreatePlaceIndexRequest\"},\ \"output\":{\"shape\":\"CreatePlaceIndexResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ConflictException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ServiceQuotaExceededException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Creates a place index resource in your Amazon Web Services account. Use a place index resource to geocode addresses and other text queries by using the SearchPlaceIndexForText operation, and reverse geocode coordinates by using the SearchPlaceIndexForPosition operation, and enable autosuggestions by using the SearchPlaceIndexForSuggestions operation.

If your application is tracking or routing assets you use in your business, such as delivery vehicles or employees, you must not use Esri as your geolocation provider. See section 82 of the Amazon Web Services service terms for more details.

\",\ \"endpoint\":{\"hostPrefix\":\"places.\"},\ \"idempotent\":true\ },\ \"CreateRouteCalculator\":{\ \"name\":\"CreateRouteCalculator\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/routes/v0/calculators\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"CreateRouteCalculatorRequest\"},\ \"output\":{\"shape\":\"CreateRouteCalculatorResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ConflictException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ServiceQuotaExceededException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Creates a route calculator resource in your Amazon Web Services account.

You can send requests to a route calculator resource to estimate travel time, distance, and get directions. A route calculator sources traffic and road network data from your chosen data provider.

If your application is tracking or routing assets you use in your business, such as delivery vehicles or employees, you must not use Esri as your geolocation provider. See section 82 of the Amazon Web Services service terms for more details.

\",\ \"endpoint\":{\"hostPrefix\":\"routes.\"},\ \"idempotent\":true\ },\ \"CreateTracker\":{\ \"name\":\"CreateTracker\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/tracking/v0/trackers\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"CreateTrackerRequest\"},\ \"output\":{\"shape\":\"CreateTrackerResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ConflictException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ServiceQuotaExceededException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Creates a tracker resource in your Amazon Web Services account, which lets you retrieve current and historical location of devices.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"},\ \"idempotent\":true\ },\ \"DeleteGeofenceCollection\":{\ \"name\":\"DeleteGeofenceCollection\",\ \"http\":{\ \"method\":\"DELETE\",\ \"requestUri\":\"/geofencing/v0/collections/{CollectionName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"DeleteGeofenceCollectionRequest\"},\ \"output\":{\"shape\":\"DeleteGeofenceCollectionResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Deletes a geofence collection from your Amazon Web Services account.

This operation deletes the resource permanently. If the geofence collection is the target of a tracker resource, the devices will no longer be monitored.

\",\ \"endpoint\":{\"hostPrefix\":\"geofencing.\"},\ \"idempotent\":true\ },\ \"DeleteKey\":{\ \"name\":\"DeleteKey\",\ \"http\":{\ \"method\":\"DELETE\",\ \"requestUri\":\"/metadata/v0/keys/{KeyName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"DeleteKeyRequest\"},\ \"output\":{\"shape\":\"DeleteKeyResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Deletes the specified API key. The API key must have been deactivated more than 90 days previously.

\",\ \"endpoint\":{\"hostPrefix\":\"metadata.\"},\ \"idempotent\":true\ },\ \"DeleteMap\":{\ \"name\":\"DeleteMap\",\ \"http\":{\ \"method\":\"DELETE\",\ \"requestUri\":\"/maps/v0/maps/{MapName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"DeleteMapRequest\"},\ \"output\":{\"shape\":\"DeleteMapResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Deletes a map resource from your Amazon Web Services account.

This operation deletes the resource permanently. If the map is being used in an application, the map may not render.

\",\ \"endpoint\":{\"hostPrefix\":\"maps.\"},\ \"idempotent\":true\ },\ \"DeletePlaceIndex\":{\ \"name\":\"DeletePlaceIndex\",\ \"http\":{\ \"method\":\"DELETE\",\ \"requestUri\":\"/places/v0/indexes/{IndexName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"DeletePlaceIndexRequest\"},\ \"output\":{\"shape\":\"DeletePlaceIndexResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Deletes a place index resource from your Amazon Web Services account.

This operation deletes the resource permanently.

\",\ \"endpoint\":{\"hostPrefix\":\"places.\"},\ \"idempotent\":true\ },\ \"DeleteRouteCalculator\":{\ \"name\":\"DeleteRouteCalculator\",\ \"http\":{\ \"method\":\"DELETE\",\ \"requestUri\":\"/routes/v0/calculators/{CalculatorName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"DeleteRouteCalculatorRequest\"},\ \"output\":{\"shape\":\"DeleteRouteCalculatorResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Deletes a route calculator resource from your Amazon Web Services account.

This operation deletes the resource permanently.

\",\ \"endpoint\":{\"hostPrefix\":\"routes.\"},\ \"idempotent\":true\ },\ \"DeleteTracker\":{\ \"name\":\"DeleteTracker\",\ \"http\":{\ \"method\":\"DELETE\",\ \"requestUri\":\"/tracking/v0/trackers/{TrackerName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"DeleteTrackerRequest\"},\ \"output\":{\"shape\":\"DeleteTrackerResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Deletes a tracker resource from your Amazon Web Services account.

This operation deletes the resource permanently. If the tracker resource is in use, you may encounter an error. Make sure that the target resource isn't a dependency for your applications.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"},\ \"idempotent\":true\ },\ \"DescribeGeofenceCollection\":{\ \"name\":\"DescribeGeofenceCollection\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/geofencing/v0/collections/{CollectionName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"DescribeGeofenceCollectionRequest\"},\ \"output\":{\"shape\":\"DescribeGeofenceCollectionResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Retrieves the geofence collection details.

\",\ \"endpoint\":{\"hostPrefix\":\"geofencing.\"}\ },\ \"DescribeKey\":{\ \"name\":\"DescribeKey\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/metadata/v0/keys/{KeyName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"DescribeKeyRequest\"},\ \"output\":{\"shape\":\"DescribeKeyResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Retrieves the API key resource details.

\",\ \"endpoint\":{\"hostPrefix\":\"metadata.\"}\ },\ \"DescribeMap\":{\ \"name\":\"DescribeMap\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/maps/v0/maps/{MapName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"DescribeMapRequest\"},\ \"output\":{\"shape\":\"DescribeMapResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Retrieves the map resource details.

\",\ \"endpoint\":{\"hostPrefix\":\"maps.\"}\ },\ \"DescribePlaceIndex\":{\ \"name\":\"DescribePlaceIndex\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/places/v0/indexes/{IndexName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"DescribePlaceIndexRequest\"},\ \"output\":{\"shape\":\"DescribePlaceIndexResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Retrieves the place index resource details.

\",\ \"endpoint\":{\"hostPrefix\":\"places.\"}\ },\ \"DescribeRouteCalculator\":{\ \"name\":\"DescribeRouteCalculator\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/routes/v0/calculators/{CalculatorName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"DescribeRouteCalculatorRequest\"},\ \"output\":{\"shape\":\"DescribeRouteCalculatorResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Retrieves the route calculator resource details.

\",\ \"endpoint\":{\"hostPrefix\":\"routes.\"}\ },\ \"DescribeTracker\":{\ \"name\":\"DescribeTracker\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/tracking/v0/trackers/{TrackerName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"DescribeTrackerRequest\"},\ \"output\":{\"shape\":\"DescribeTrackerResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Retrieves the tracker resource details.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"}\ },\ \"DisassociateTrackerConsumer\":{\ \"name\":\"DisassociateTrackerConsumer\",\ \"http\":{\ \"method\":\"DELETE\",\ \"requestUri\":\"/tracking/v0/trackers/{TrackerName}/consumers/{ConsumerArn}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"DisassociateTrackerConsumerRequest\"},\ \"output\":{\"shape\":\"DisassociateTrackerConsumerResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Removes the association between a tracker resource and a geofence collection.

Once you unlink a tracker resource from a geofence collection, the tracker positions will no longer be automatically evaluated against geofences.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"}\ },\ \"GetDevicePosition\":{\ \"name\":\"GetDevicePosition\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/tracking/v0/trackers/{TrackerName}/devices/{DeviceId}/positions/latest\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"GetDevicePositionRequest\"},\ \"output\":{\"shape\":\"GetDevicePositionResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Retrieves a device's most recent position according to its sample time.

Device positions are deleted after 30 days.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"}\ },\ \"GetDevicePositionHistory\":{\ \"name\":\"GetDevicePositionHistory\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/tracking/v0/trackers/{TrackerName}/devices/{DeviceId}/list-positions\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"GetDevicePositionHistoryRequest\"},\ \"output\":{\"shape\":\"GetDevicePositionHistoryResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Retrieves the device position history from a tracker resource within a specified range of time.

Device positions are deleted after 30 days.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"}\ },\ \"GetGeofence\":{\ \"name\":\"GetGeofence\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/geofencing/v0/collections/{CollectionName}/geofences/{GeofenceId}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"GetGeofenceRequest\"},\ \"output\":{\"shape\":\"GetGeofenceResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Retrieves the geofence details from a geofence collection.

\",\ \"endpoint\":{\"hostPrefix\":\"geofencing.\"}\ },\ \"GetMapGlyphs\":{\ \"name\":\"GetMapGlyphs\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/maps/v0/maps/{MapName}/glyphs/{FontStack}/{FontUnicodeRange}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"GetMapGlyphsRequest\"},\ \"output\":{\"shape\":\"GetMapGlyphsResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Retrieves glyphs used to display labels on a map.

\",\ \"endpoint\":{\"hostPrefix\":\"maps.\"}\ },\ \"GetMapSprites\":{\ \"name\":\"GetMapSprites\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/maps/v0/maps/{MapName}/sprites/{FileName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"GetMapSpritesRequest\"},\ \"output\":{\"shape\":\"GetMapSpritesResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Retrieves the sprite sheet corresponding to a map resource. The sprite sheet is a PNG image paired with a JSON document describing the offsets of individual icons that will be displayed on a rendered map.

\",\ \"endpoint\":{\"hostPrefix\":\"maps.\"}\ },\ \"GetMapStyleDescriptor\":{\ \"name\":\"GetMapStyleDescriptor\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/maps/v0/maps/{MapName}/style-descriptor\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"GetMapStyleDescriptorRequest\"},\ \"output\":{\"shape\":\"GetMapStyleDescriptorResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Retrieves the map style descriptor from a map resource.

The style descriptor contains specifications on how features render on a map. For example, what data to display, what order to display the data in, and the style for the data. Style descriptors follow the Mapbox Style Specification.

\",\ \"endpoint\":{\"hostPrefix\":\"maps.\"}\ },\ \"GetMapTile\":{\ \"name\":\"GetMapTile\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/maps/v0/maps/{MapName}/tiles/{Z}/{X}/{Y}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"GetMapTileRequest\"},\ \"output\":{\"shape\":\"GetMapTileResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Retrieves a vector data tile from the map resource. Map tiles are used by clients to render a map. they're addressed using a grid arrangement with an X coordinate, Y coordinate, and Z (zoom) level.

The origin (0, 0) is the top left of the map. Increasing the zoom level by 1 doubles both the X and Y dimensions, so a tile containing data for the entire world at (0/0/0) will be split into 4 tiles at zoom 1 (1/0/0, 1/0/1, 1/1/0, 1/1/1).

\",\ \"endpoint\":{\"hostPrefix\":\"maps.\"}\ },\ \"GetPlace\":{\ \"name\":\"GetPlace\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/places/v0/indexes/{IndexName}/places/{PlaceId}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"GetPlaceRequest\"},\ \"output\":{\"shape\":\"GetPlaceResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Finds a place by its unique ID. A PlaceId is returned by other search operations.

A PlaceId is valid only if all of the following are the same in the original search request and the call to GetPlace.

\",\ \"endpoint\":{\"hostPrefix\":\"places.\"}\ },\ \"ListDevicePositions\":{\ \"name\":\"ListDevicePositions\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/tracking/v0/trackers/{TrackerName}/list-positions\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"ListDevicePositionsRequest\"},\ \"output\":{\"shape\":\"ListDevicePositionsResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

A batch request to retrieve all device positions.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"}\ },\ \"ListGeofenceCollections\":{\ \"name\":\"ListGeofenceCollections\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/geofencing/v0/list-collections\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"ListGeofenceCollectionsRequest\"},\ \"output\":{\"shape\":\"ListGeofenceCollectionsResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Lists geofence collections in your Amazon Web Services account.

\",\ \"endpoint\":{\"hostPrefix\":\"geofencing.\"}\ },\ \"ListGeofences\":{\ \"name\":\"ListGeofences\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/geofencing/v0/collections/{CollectionName}/list-geofences\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"ListGeofencesRequest\"},\ \"output\":{\"shape\":\"ListGeofencesResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Lists geofences stored in a given geofence collection.

\",\ \"endpoint\":{\"hostPrefix\":\"geofencing.\"}\ },\ \"ListKeys\":{\ \"name\":\"ListKeys\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/metadata/v0/list-keys\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"ListKeysRequest\"},\ \"output\":{\"shape\":\"ListKeysResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Lists API key resources in your Amazon Web Services account.

\",\ \"endpoint\":{\"hostPrefix\":\"metadata.\"}\ },\ \"ListMaps\":{\ \"name\":\"ListMaps\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/maps/v0/list-maps\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"ListMapsRequest\"},\ \"output\":{\"shape\":\"ListMapsResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Lists map resources in your Amazon Web Services account.

\",\ \"endpoint\":{\"hostPrefix\":\"maps.\"}\ },\ \"ListPlaceIndexes\":{\ \"name\":\"ListPlaceIndexes\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/places/v0/list-indexes\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"ListPlaceIndexesRequest\"},\ \"output\":{\"shape\":\"ListPlaceIndexesResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Lists place index resources in your Amazon Web Services account.

\",\ \"endpoint\":{\"hostPrefix\":\"places.\"}\ },\ \"ListRouteCalculators\":{\ \"name\":\"ListRouteCalculators\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/routes/v0/list-calculators\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"ListRouteCalculatorsRequest\"},\ \"output\":{\"shape\":\"ListRouteCalculatorsResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Lists route calculator resources in your Amazon Web Services account.

\",\ \"endpoint\":{\"hostPrefix\":\"routes.\"}\ },\ \"ListTagsForResource\":{\ \"name\":\"ListTagsForResource\",\ \"http\":{\ \"method\":\"GET\",\ \"requestUri\":\"/tags/{ResourceArn}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"ListTagsForResourceRequest\"},\ \"output\":{\"shape\":\"ListTagsForResourceResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Returns a list of tags that are applied to the specified Amazon Location resource.

\",\ \"endpoint\":{\"hostPrefix\":\"metadata.\"}\ },\ \"ListTrackerConsumers\":{\ \"name\":\"ListTrackerConsumers\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/tracking/v0/trackers/{TrackerName}/list-consumers\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"ListTrackerConsumersRequest\"},\ \"output\":{\"shape\":\"ListTrackerConsumersResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Lists geofence collections currently associated to the given tracker resource.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"}\ },\ \"ListTrackers\":{\ \"name\":\"ListTrackers\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/tracking/v0/list-trackers\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"ListTrackersRequest\"},\ \"output\":{\"shape\":\"ListTrackersResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Lists tracker resources in your Amazon Web Services account.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"}\ },\ \"PutGeofence\":{\ \"name\":\"PutGeofence\",\ \"http\":{\ \"method\":\"PUT\",\ \"requestUri\":\"/geofencing/v0/collections/{CollectionName}/geofences/{GeofenceId}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"PutGeofenceRequest\"},\ \"output\":{\"shape\":\"PutGeofenceResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"ConflictException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Stores a geofence geometry in a given geofence collection, or updates the geometry of an existing geofence if a geofence ID is included in the request.

\",\ \"endpoint\":{\"hostPrefix\":\"geofencing.\"}\ },\ \"SearchPlaceIndexForPosition\":{\ \"name\":\"SearchPlaceIndexForPosition\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/places/v0/indexes/{IndexName}/search/position\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"SearchPlaceIndexForPositionRequest\"},\ \"output\":{\"shape\":\"SearchPlaceIndexForPositionResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Reverse geocodes a given coordinate and returns a legible address. Allows you to search for Places or points of interest near a given position.

\",\ \"endpoint\":{\"hostPrefix\":\"places.\"}\ },\ \"SearchPlaceIndexForSuggestions\":{\ \"name\":\"SearchPlaceIndexForSuggestions\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/places/v0/indexes/{IndexName}/search/suggestions\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"SearchPlaceIndexForSuggestionsRequest\"},\ \"output\":{\"shape\":\"SearchPlaceIndexForSuggestionsResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Generates suggestions for addresses and points of interest based on partial or misspelled free-form text. This operation is also known as autocomplete, autosuggest, or fuzzy matching.

Optional parameters let you narrow your search results by bounding box or country, or bias your search toward a specific position on the globe.

You can search for suggested place names near a specified position by using BiasPosition, or filter results within a bounding box by using FilterBBox. These parameters are mutually exclusive; using both BiasPosition and FilterBBox in the same command returns an error.

\",\ \"endpoint\":{\"hostPrefix\":\"places.\"}\ },\ \"SearchPlaceIndexForText\":{\ \"name\":\"SearchPlaceIndexForText\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/places/v0/indexes/{IndexName}/search/text\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"SearchPlaceIndexForTextRequest\"},\ \"output\":{\"shape\":\"SearchPlaceIndexForTextResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Geocodes free-form text, such as an address, name, city, or region to allow you to search for Places or points of interest.

Optional parameters let you narrow your search results by bounding box or country, or bias your search toward a specific position on the globe.

You can search for places near a given position using BiasPosition, or filter results within a bounding box using FilterBBox. Providing both parameters simultaneously returns an error.

Search results are returned in order of highest to lowest relevance.

\",\ \"endpoint\":{\"hostPrefix\":\"places.\"}\ },\ \"TagResource\":{\ \"name\":\"TagResource\",\ \"http\":{\ \"method\":\"POST\",\ \"requestUri\":\"/tags/{ResourceArn}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"TagResourceRequest\"},\ \"output\":{\"shape\":\"TagResourceResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Assigns one or more tags (key-value pairs) to the specified Amazon Location Service resource.

Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values.

You can use the TagResource operation with an Amazon Location Service resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the tags already associated with the resource. If you specify a tag key that's already associated with the resource, the new tag value that you specify replaces the previous value for that tag.

You can associate up to 50 tags with a resource.

\",\ \"endpoint\":{\"hostPrefix\":\"metadata.\"}\ },\ \"UntagResource\":{\ \"name\":\"UntagResource\",\ \"http\":{\ \"method\":\"DELETE\",\ \"requestUri\":\"/tags/{ResourceArn}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"UntagResourceRequest\"},\ \"output\":{\"shape\":\"UntagResourceResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Removes one or more tags from the specified Amazon Location resource.

\",\ \"endpoint\":{\"hostPrefix\":\"metadata.\"},\ \"idempotent\":true\ },\ \"UpdateGeofenceCollection\":{\ \"name\":\"UpdateGeofenceCollection\",\ \"http\":{\ \"method\":\"PATCH\",\ \"requestUri\":\"/geofencing/v0/collections/{CollectionName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"UpdateGeofenceCollectionRequest\"},\ \"output\":{\"shape\":\"UpdateGeofenceCollectionResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Updates the specified properties of a given geofence collection.

\",\ \"endpoint\":{\"hostPrefix\":\"geofencing.\"},\ \"idempotent\":true\ },\ \"UpdateKey\":{\ \"name\":\"UpdateKey\",\ \"http\":{\ \"method\":\"PATCH\",\ \"requestUri\":\"/metadata/v0/keys/{KeyName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"UpdateKeyRequest\"},\ \"output\":{\"shape\":\"UpdateKeyResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Updates the specified properties of a given API key resource.

\",\ \"endpoint\":{\"hostPrefix\":\"metadata.\"},\ \"idempotent\":true\ },\ \"UpdateMap\":{\ \"name\":\"UpdateMap\",\ \"http\":{\ \"method\":\"PATCH\",\ \"requestUri\":\"/maps/v0/maps/{MapName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"UpdateMapRequest\"},\ \"output\":{\"shape\":\"UpdateMapResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Updates the specified properties of a given map resource.

\",\ \"endpoint\":{\"hostPrefix\":\"maps.\"},\ \"idempotent\":true\ },\ \"UpdatePlaceIndex\":{\ \"name\":\"UpdatePlaceIndex\",\ \"http\":{\ \"method\":\"PATCH\",\ \"requestUri\":\"/places/v0/indexes/{IndexName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"UpdatePlaceIndexRequest\"},\ \"output\":{\"shape\":\"UpdatePlaceIndexResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Updates the specified properties of a given place index resource.

\",\ \"endpoint\":{\"hostPrefix\":\"places.\"},\ \"idempotent\":true\ },\ \"UpdateRouteCalculator\":{\ \"name\":\"UpdateRouteCalculator\",\ \"http\":{\ \"method\":\"PATCH\",\ \"requestUri\":\"/routes/v0/calculators/{CalculatorName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"UpdateRouteCalculatorRequest\"},\ \"output\":{\"shape\":\"UpdateRouteCalculatorResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Updates the specified properties for a given route calculator resource.

\",\ \"endpoint\":{\"hostPrefix\":\"routes.\"},\ \"idempotent\":true\ },\ \"UpdateTracker\":{\ \"name\":\"UpdateTracker\",\ \"http\":{\ \"method\":\"PATCH\",\ \"requestUri\":\"/tracking/v0/trackers/{TrackerName}\",\ \"responseCode\":200\ },\ \"input\":{\"shape\":\"UpdateTrackerRequest\"},\ \"output\":{\"shape\":\"UpdateTrackerResponse\"},\ \"errors\":[\ {\"shape\":\"InternalServerException\"},\ {\"shape\":\"ResourceNotFoundException\"},\ {\"shape\":\"AccessDeniedException\"},\ {\"shape\":\"ValidationException\"},\ {\"shape\":\"ThrottlingException\"}\ ],\ \"documentation\":\"

Updates the specified properties of a given tracker resource.

\",\ \"endpoint\":{\"hostPrefix\":\"tracking.\"},\ \"idempotent\":true\ }\ },\ \"shapes\":{\ \"AccessDeniedException\":{\ \"type\":\"structure\",\ \"required\":[\"Message\"],\ \"members\":{\ \"Message\":{\ \"shape\":\"String\",\ \"locationName\":\"message\"\ }\ },\ \"documentation\":\"

The request was denied because of insufficient access or permissions. Check with an administrator to verify your permissions.

\",\ \"error\":{\ \"httpStatusCode\":403,\ \"senderFault\":true\ },\ \"exception\":true\ },\ \"ApiKey\":{\ \"type\":\"string\",\ \"max\":1000,\ \"min\":0,\ \"sensitive\":true\ },\ \"ApiKeyAction\":{\ \"type\":\"string\",\ \"max\":200,\ \"min\":5,\ \"pattern\":\"^geo:\\\\w*\\\\*?$\"\ },\ \"ApiKeyFilter\":{\ \"type\":\"structure\",\ \"members\":{\ \"KeyStatus\":{\ \"shape\":\"Status\",\ \"documentation\":\"

Filter on Active or Expired API keys.

\"\ }\ },\ \"documentation\":\"

Options for filtering API keys.

\"\ },\ \"ApiKeyRestrictions\":{\ \"type\":\"structure\",\ \"required\":[\ \"AllowActions\",\ \"AllowResources\"\ ],\ \"members\":{\ \"AllowActions\":{\ \"shape\":\"ApiKeyRestrictionsAllowActionsList\",\ \"documentation\":\"

A list of allowed actions that an API key resource grants permissions to perform. You must have at least one action for each type of resource. For example, if you have a place resource, you must include at least one place action.

The following are valid values for the actions.

You must use these strings exactly. For example, to provide access to map rendering, the only valid action is geo:GetMap* as an input to the list. [\\\"geo:GetMap*\\\"] is valid but [\\\"geo:GetMapTile\\\"] is not. Similarly, you cannot use [\\\"geo:SearchPlaceIndexFor*\\\"] - you must list each of the Place actions separately.

\"\ },\ \"AllowReferers\":{\ \"shape\":\"ApiKeyRestrictionsAllowReferersList\",\ \"documentation\":\"

An optional list of allowed HTTP referers for which requests must originate from. Requests using this API key from other domains will not be allowed.

Requirements:

\"\ },\ \"AllowResources\":{\ \"shape\":\"ApiKeyRestrictionsAllowResourcesList\",\ \"documentation\":\"

A list of allowed resource ARNs that a API key bearer can perform actions on.

For more information about ARN format, see Amazon Resource Names (ARNs).

\"\ }\ },\ \"documentation\":\"

API Restrictions on the allowed actions, resources, and referers for an API key resource.

\"\ },\ \"ApiKeyRestrictionsAllowActionsList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"ApiKeyAction\"},\ \"max\":7,\ \"min\":1\ },\ \"ApiKeyRestrictionsAllowReferersList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"RefererPattern\"},\ \"max\":5,\ \"min\":1\ },\ \"ApiKeyRestrictionsAllowResourcesList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"GeoArn\"},\ \"max\":5,\ \"min\":1\ },\ \"Arn\":{\ \"type\":\"string\",\ \"max\":1600,\ \"min\":0,\ \"pattern\":\"^arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:([^/].*)?$\"\ },\ \"ArnList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Arn\"}\ },\ \"AssociateTrackerConsumerRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"ConsumerArn\",\ \"TrackerName\"\ ],\ \"members\":{\ \"ConsumerArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the geofence collection to be associated to tracker resource. Used when you need to specify a resource across all Amazon Web Services.

\"\ },\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the tracker resource to be associated with a geofence collection.

\",\ \"location\":\"uri\",\ \"locationName\":\"TrackerName\"\ }\ }\ },\ \"AssociateTrackerConsumerResponse\":{\ \"type\":\"structure\",\ \"members\":{\ }\ },\ \"BatchDeleteDevicePositionHistoryError\":{\ \"type\":\"structure\",\ \"required\":[\ \"DeviceId\",\ \"Error\"\ ],\ \"members\":{\ \"DeviceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The ID of the device for this position.

\"\ },\ \"Error\":{\"shape\":\"BatchItemError\"}\ },\ \"documentation\":\"

Contains the tracker resource details.

\"\ },\ \"BatchDeleteDevicePositionHistoryErrorList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"BatchDeleteDevicePositionHistoryError\"}\ },\ \"BatchDeleteDevicePositionHistoryRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"DeviceIds\",\ \"TrackerName\"\ ],\ \"members\":{\ \"DeviceIds\":{\ \"shape\":\"BatchDeleteDevicePositionHistoryRequestDeviceIdsList\",\ \"documentation\":\"

Devices whose position history you want to delete.

\"\ },\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the tracker resource to delete the device position history from.

\",\ \"location\":\"uri\",\ \"locationName\":\"TrackerName\"\ }\ }\ },\ \"BatchDeleteDevicePositionHistoryRequestDeviceIdsList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Id\"},\ \"max\":100,\ \"min\":1\ },\ \"BatchDeleteDevicePositionHistoryResponse\":{\ \"type\":\"structure\",\ \"required\":[\"Errors\"],\ \"members\":{\ \"Errors\":{\ \"shape\":\"BatchDeleteDevicePositionHistoryErrorList\",\ \"documentation\":\"

Contains error details for each device history that failed to delete.

\"\ }\ }\ },\ \"BatchDeleteGeofenceError\":{\ \"type\":\"structure\",\ \"required\":[\ \"Error\",\ \"GeofenceId\"\ ],\ \"members\":{\ \"Error\":{\ \"shape\":\"BatchItemError\",\ \"documentation\":\"

Contains details associated to the batch error.

\"\ },\ \"GeofenceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The geofence associated with the error message.

\"\ }\ },\ \"documentation\":\"

Contains error details for each geofence that failed to delete from the geofence collection.

\"\ },\ \"BatchDeleteGeofenceErrorList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"BatchDeleteGeofenceError\"}\ },\ \"BatchDeleteGeofenceRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"CollectionName\",\ \"GeofenceIds\"\ ],\ \"members\":{\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The geofence collection storing the geofences to be deleted.

\",\ \"location\":\"uri\",\ \"locationName\":\"CollectionName\"\ },\ \"GeofenceIds\":{\ \"shape\":\"BatchDeleteGeofenceRequestGeofenceIdsList\",\ \"documentation\":\"

The batch of geofences to be deleted.

\"\ }\ }\ },\ \"BatchDeleteGeofenceRequestGeofenceIdsList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Id\"},\ \"max\":10,\ \"min\":1\ },\ \"BatchDeleteGeofenceResponse\":{\ \"type\":\"structure\",\ \"required\":[\"Errors\"],\ \"members\":{\ \"Errors\":{\ \"shape\":\"BatchDeleteGeofenceErrorList\",\ \"documentation\":\"

Contains error details for each geofence that failed to delete.

\"\ }\ }\ },\ \"BatchEvaluateGeofencesError\":{\ \"type\":\"structure\",\ \"required\":[\ \"DeviceId\",\ \"Error\",\ \"SampleTime\"\ ],\ \"members\":{\ \"DeviceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The device associated with the position evaluation error.

\"\ },\ \"Error\":{\ \"shape\":\"BatchItemError\",\ \"documentation\":\"

Contains details associated to the batch error.

\"\ },\ \"SampleTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

Specifies a timestamp for when the error occurred in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ }\ },\ \"documentation\":\"

Contains error details for each device that failed to evaluate its position against the geofences in a given geofence collection.

\"\ },\ \"BatchEvaluateGeofencesErrorList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"BatchEvaluateGeofencesError\"}\ },\ \"BatchEvaluateGeofencesRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"CollectionName\",\ \"DevicePositionUpdates\"\ ],\ \"members\":{\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The geofence collection used in evaluating the position of devices against its geofences.

\",\ \"location\":\"uri\",\ \"locationName\":\"CollectionName\"\ },\ \"DevicePositionUpdates\":{\ \"shape\":\"BatchEvaluateGeofencesRequestDevicePositionUpdatesList\",\ \"documentation\":\"

Contains device details for each device to be evaluated against the given geofence collection.

\"\ }\ }\ },\ \"BatchEvaluateGeofencesRequestDevicePositionUpdatesList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"DevicePositionUpdate\"},\ \"max\":10,\ \"min\":1\ },\ \"BatchEvaluateGeofencesResponse\":{\ \"type\":\"structure\",\ \"required\":[\"Errors\"],\ \"members\":{\ \"Errors\":{\ \"shape\":\"BatchEvaluateGeofencesErrorList\",\ \"documentation\":\"

Contains error details for each device that failed to evaluate its position against the given geofence collection.

\"\ }\ }\ },\ \"BatchGetDevicePositionError\":{\ \"type\":\"structure\",\ \"required\":[\ \"DeviceId\",\ \"Error\"\ ],\ \"members\":{\ \"DeviceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The ID of the device that didn't return a position.

\"\ },\ \"Error\":{\ \"shape\":\"BatchItemError\",\ \"documentation\":\"

Contains details related to the error code.

\"\ }\ },\ \"documentation\":\"

Contains error details for each device that didn't return a position.

\"\ },\ \"BatchGetDevicePositionErrorList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"BatchGetDevicePositionError\"}\ },\ \"BatchGetDevicePositionRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"DeviceIds\",\ \"TrackerName\"\ ],\ \"members\":{\ \"DeviceIds\":{\ \"shape\":\"BatchGetDevicePositionRequestDeviceIdsList\",\ \"documentation\":\"

Devices whose position you want to retrieve.

\"\ },\ \"TrackerName\":{\ \"shape\":\"BatchGetDevicePositionRequestTrackerNameString\",\ \"documentation\":\"

The tracker resource retrieving the device position.

\",\ \"location\":\"uri\",\ \"locationName\":\"TrackerName\"\ }\ }\ },\ \"BatchGetDevicePositionRequestDeviceIdsList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Id\"},\ \"max\":10,\ \"min\":1\ },\ \"BatchGetDevicePositionRequestTrackerNameString\":{\ \"type\":\"string\",\ \"min\":1,\ \"pattern\":\"^[-._\\\\w]+$\"\ },\ \"BatchGetDevicePositionResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"DevicePositions\",\ \"Errors\"\ ],\ \"members\":{\ \"DevicePositions\":{\ \"shape\":\"DevicePositionList\",\ \"documentation\":\"

Contains device position details such as the device ID, position, and timestamps for when the position was received and sampled.

\"\ },\ \"Errors\":{\ \"shape\":\"BatchGetDevicePositionErrorList\",\ \"documentation\":\"

Contains error details for each device that failed to send its position to the tracker resource.

\"\ }\ }\ },\ \"BatchItemError\":{\ \"type\":\"structure\",\ \"members\":{\ \"Code\":{\ \"shape\":\"BatchItemErrorCode\",\ \"documentation\":\"

The error code associated with the batch request error.

\"\ },\ \"Message\":{\ \"shape\":\"String\",\ \"documentation\":\"

A message with the reason for the batch request error.

\"\ }\ },\ \"documentation\":\"

Contains the batch request error details associated with the request.

\"\ },\ \"BatchItemErrorCode\":{\ \"type\":\"string\",\ \"enum\":[\ \"AccessDeniedError\",\ \"ConflictError\",\ \"InternalServerError\",\ \"ResourceNotFoundError\",\ \"ThrottlingError\",\ \"ValidationError\"\ ]\ },\ \"BatchPutGeofenceError\":{\ \"type\":\"structure\",\ \"required\":[\ \"Error\",\ \"GeofenceId\"\ ],\ \"members\":{\ \"Error\":{\ \"shape\":\"BatchItemError\",\ \"documentation\":\"

Contains details associated to the batch error.

\"\ },\ \"GeofenceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The geofence associated with the error message.

\"\ }\ },\ \"documentation\":\"

Contains error details for each geofence that failed to be stored in a given geofence collection.

\"\ },\ \"BatchPutGeofenceErrorList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"BatchPutGeofenceError\"}\ },\ \"BatchPutGeofenceRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"CollectionName\",\ \"Entries\"\ ],\ \"members\":{\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The geofence collection storing the geofences.

\",\ \"location\":\"uri\",\ \"locationName\":\"CollectionName\"\ },\ \"Entries\":{\ \"shape\":\"BatchPutGeofenceRequestEntriesList\",\ \"documentation\":\"

The batch of geofences to be stored in a geofence collection.

\"\ }\ }\ },\ \"BatchPutGeofenceRequestEntriesList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"BatchPutGeofenceRequestEntry\"},\ \"max\":10,\ \"min\":1\ },\ \"BatchPutGeofenceRequestEntry\":{\ \"type\":\"structure\",\ \"required\":[\ \"GeofenceId\",\ \"Geometry\"\ ],\ \"members\":{\ \"GeofenceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The identifier for the geofence to be stored in a given geofence collection.

\"\ },\ \"GeofenceProperties\":{\ \"shape\":\"PropertyMap\",\ \"documentation\":\"

Associates one of more properties with the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence.

Format: \\\"key\\\" : \\\"value\\\"

\"\ },\ \"Geometry\":{\ \"shape\":\"GeofenceGeometry\",\ \"documentation\":\"

Contains the details of the position of the geofence. Can be either a polygon or a circle. Including both will return a validation error.

Each geofence polygon can have a maximum of 1,000 vertices.

\"\ }\ },\ \"documentation\":\"

Contains geofence geometry details.

\"\ },\ \"BatchPutGeofenceResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"Errors\",\ \"Successes\"\ ],\ \"members\":{\ \"Errors\":{\ \"shape\":\"BatchPutGeofenceErrorList\",\ \"documentation\":\"

Contains additional error details for each geofence that failed to be stored in a geofence collection.

\"\ },\ \"Successes\":{\ \"shape\":\"BatchPutGeofenceSuccessList\",\ \"documentation\":\"

Contains each geofence that was successfully stored in a geofence collection.

\"\ }\ }\ },\ \"BatchPutGeofenceSuccess\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"GeofenceId\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the geofence was stored in a geofence collection in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ },\ \"GeofenceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The geofence successfully stored in a geofence collection.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the geofence was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ }\ },\ \"documentation\":\"

Contains a summary of each geofence that was successfully stored in a given geofence collection.

\"\ },\ \"BatchPutGeofenceSuccessList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"BatchPutGeofenceSuccess\"}\ },\ \"BatchUpdateDevicePositionError\":{\ \"type\":\"structure\",\ \"required\":[\ \"DeviceId\",\ \"Error\",\ \"SampleTime\"\ ],\ \"members\":{\ \"DeviceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The device associated with the failed location update.

\"\ },\ \"Error\":{\ \"shape\":\"BatchItemError\",\ \"documentation\":\"

Contains details related to the error code such as the error code and error message.

\"\ },\ \"SampleTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp at which the device position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ },\ \"documentation\":\"

Contains error details for each device that failed to update its position.

\"\ },\ \"BatchUpdateDevicePositionErrorList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"BatchUpdateDevicePositionError\"}\ },\ \"BatchUpdateDevicePositionRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"TrackerName\",\ \"Updates\"\ ],\ \"members\":{\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the tracker resource to update.

\",\ \"location\":\"uri\",\ \"locationName\":\"TrackerName\"\ },\ \"Updates\":{\ \"shape\":\"BatchUpdateDevicePositionRequestUpdatesList\",\ \"documentation\":\"

Contains the position update details for each device, up to 10 devices.

\"\ }\ }\ },\ \"BatchUpdateDevicePositionRequestUpdatesList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"DevicePositionUpdate\"},\ \"max\":10,\ \"min\":1\ },\ \"BatchUpdateDevicePositionResponse\":{\ \"type\":\"structure\",\ \"required\":[\"Errors\"],\ \"members\":{\ \"Errors\":{\ \"shape\":\"BatchUpdateDevicePositionErrorList\",\ \"documentation\":\"

Contains error details for each device that failed to update its position.

\"\ }\ }\ },\ \"Blob\":{\"type\":\"blob\"},\ \"Boolean\":{\ \"type\":\"boolean\",\ \"box\":true\ },\ \"BoundingBox\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Double\"},\ \"max\":4,\ \"min\":4,\ \"sensitive\":true\ },\ \"CalculateRouteCarModeOptions\":{\ \"type\":\"structure\",\ \"members\":{\ \"AvoidFerries\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

Avoids ferries when calculating routes.

Default Value: false

Valid Values: false | true

\"\ },\ \"AvoidTolls\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

Avoids tolls when calculating routes.

Default Value: false

Valid Values: false | true

\"\ }\ },\ \"documentation\":\"

Contains details about additional route preferences for requests that specify TravelMode as Car.

\"\ },\ \"CalculateRouteMatrixRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"CalculatorName\",\ \"DeparturePositions\",\ \"DestinationPositions\"\ ],\ \"members\":{\ \"CalculatorName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the route calculator resource that you want to use to calculate the route matrix.

\",\ \"location\":\"uri\",\ \"locationName\":\"CalculatorName\"\ },\ \"CarModeOptions\":{\ \"shape\":\"CalculateRouteCarModeOptions\",\ \"documentation\":\"

Specifies route preferences when traveling by Car, such as avoiding routes that use ferries or tolls.

Requirements: TravelMode must be specified as Car.

\"\ },\ \"DepartNow\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

Sets the time of departure as the current time. Uses the current time to calculate the route matrix. You can't set both DepartureTime and DepartNow. If neither is set, the best time of day to travel with the best traffic conditions is used to calculate the route matrix.

Default Value: false

Valid Values: false | true

\"\ },\ \"DeparturePositions\":{\ \"shape\":\"CalculateRouteMatrixRequestDeparturePositionsList\",\ \"documentation\":\"

The list of departure (origin) positions for the route matrix. An array of points, each of which is itself a 2-value array defined in WGS 84 format: [longitude, latitude]. For example, [-123.115, 49.285].

Depending on the data provider selected in the route calculator resource there may be additional restrictions on the inputs you can choose. See Position restrictions in the Amazon Location Service Developer Guide.

For route calculators that use Esri as the data provider, if you specify a departure that's not located on a road, Amazon Location moves the position to the nearest road. The snapped value is available in the result in SnappedDeparturePositions.

Valid Values: [-180 to 180,-90 to 90]

\"\ },\ \"DepartureTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

Specifies the desired time of departure. Uses the given time to calculate the route matrix. You can't set both DepartureTime and DepartNow. If neither is set, the best time of day to travel with the best traffic conditions is used to calculate the route matrix.

Setting a departure time in the past returns a 400 ValidationException error.

\"\ },\ \"DestinationPositions\":{\ \"shape\":\"CalculateRouteMatrixRequestDestinationPositionsList\",\ \"documentation\":\"

The list of destination positions for the route matrix. An array of points, each of which is itself a 2-value array defined in WGS 84 format: [longitude, latitude]. For example, [-122.339, 47.615]

Depending on the data provider selected in the route calculator resource there may be additional restrictions on the inputs you can choose. See Position restrictions in the Amazon Location Service Developer Guide.

For route calculators that use Esri as the data provider, if you specify a destination that's not located on a road, Amazon Location moves the position to the nearest road. The snapped value is available in the result in SnappedDestinationPositions.

Valid Values: [-180 to 180,-90 to 90]

\"\ },\ \"DistanceUnit\":{\ \"shape\":\"DistanceUnit\",\ \"documentation\":\"

Set the unit system to specify the distance.

Default Value: Kilometers

\"\ },\ \"Key\":{\ \"shape\":\"ApiKey\",\ \"documentation\":\"

The optional API key to authorize the request.

\",\ \"location\":\"querystring\",\ \"locationName\":\"key\"\ },\ \"TravelMode\":{\ \"shape\":\"TravelMode\",\ \"documentation\":\"

Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility.

The TravelMode you specify also determines how you specify route preferences:

Bicycle or Motorcycle are only valid when using Grab as a data provider, and only within Southeast Asia.

Truck is not available for Grab.

For more information about using Grab as a data provider, see GrabMaps in the Amazon Location Service Developer Guide.

Default Value: Car

\"\ },\ \"TruckModeOptions\":{\ \"shape\":\"CalculateRouteTruckModeOptions\",\ \"documentation\":\"

Specifies route preferences when traveling by Truck, such as avoiding routes that use ferries or tolls, and truck specifications to consider when choosing an optimal road.

Requirements: TravelMode must be specified as Truck.

\"\ }\ }\ },\ \"CalculateRouteMatrixRequestDeparturePositionsList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Position\"},\ \"max\":350,\ \"min\":1\ },\ \"CalculateRouteMatrixRequestDestinationPositionsList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Position\"},\ \"max\":350,\ \"min\":1\ },\ \"CalculateRouteMatrixResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"RouteMatrix\",\ \"Summary\"\ ],\ \"members\":{\ \"RouteMatrix\":{\ \"shape\":\"RouteMatrix\",\ \"documentation\":\"

The calculated route matrix containing the results for all pairs of DeparturePositions to DestinationPositions. Each row corresponds to one entry in DeparturePositions. Each entry in the row corresponds to the route from that entry in DeparturePositions to an entry in DestinationPositions.

\"\ },\ \"SnappedDeparturePositions\":{\ \"shape\":\"CalculateRouteMatrixResponseSnappedDeparturePositionsList\",\ \"documentation\":\"

For routes calculated using an Esri route calculator resource, departure positions are snapped to the closest road. For Esri route calculator resources, this returns the list of departure/origin positions used for calculation of the RouteMatrix.

\"\ },\ \"SnappedDestinationPositions\":{\ \"shape\":\"CalculateRouteMatrixResponseSnappedDestinationPositionsList\",\ \"documentation\":\"

The list of destination positions for the route matrix used for calculation of the RouteMatrix.

\"\ },\ \"Summary\":{\ \"shape\":\"CalculateRouteMatrixSummary\",\ \"documentation\":\"

Contains information about the route matrix, DataSource, DistanceUnit, RouteCount and ErrorCount.

\"\ }\ },\ \"documentation\":\"

Returns the result of the route matrix calculation.

\"\ },\ \"CalculateRouteMatrixResponseSnappedDeparturePositionsList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Position\"},\ \"max\":350,\ \"min\":1\ },\ \"CalculateRouteMatrixResponseSnappedDestinationPositionsList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Position\"},\ \"max\":350,\ \"min\":1\ },\ \"CalculateRouteMatrixSummary\":{\ \"type\":\"structure\",\ \"required\":[\ \"DataSource\",\ \"DistanceUnit\",\ \"ErrorCount\",\ \"RouteCount\"\ ],\ \"members\":{\ \"DataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

The data provider of traffic and road network data used to calculate the routes. Indicates one of the available providers:

For more information about data providers, see Amazon Location Service data providers.

\"\ },\ \"DistanceUnit\":{\ \"shape\":\"DistanceUnit\",\ \"documentation\":\"

The unit of measurement for route distances.

\"\ },\ \"ErrorCount\":{\ \"shape\":\"CalculateRouteMatrixSummaryErrorCountInteger\",\ \"documentation\":\"

The count of error results in the route matrix. If this number is 0, all routes were calculated successfully.

\"\ },\ \"RouteCount\":{\ \"shape\":\"CalculateRouteMatrixSummaryRouteCountInteger\",\ \"documentation\":\"

The count of cells in the route matrix. Equal to the number of DeparturePositions multiplied by the number of DestinationPositions.

\"\ }\ },\ \"documentation\":\"

A summary of the calculated route matrix.

\"\ },\ \"CalculateRouteMatrixSummaryErrorCountInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"max\":160000,\ \"min\":1\ },\ \"CalculateRouteMatrixSummaryRouteCountInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"max\":160000,\ \"min\":1\ },\ \"CalculateRouteRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"CalculatorName\",\ \"DeparturePosition\",\ \"DestinationPosition\"\ ],\ \"members\":{\ \"CalculatorName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the route calculator resource that you want to use to calculate the route.

\",\ \"location\":\"uri\",\ \"locationName\":\"CalculatorName\"\ },\ \"CarModeOptions\":{\ \"shape\":\"CalculateRouteCarModeOptions\",\ \"documentation\":\"

Specifies route preferences when traveling by Car, such as avoiding routes that use ferries or tolls.

Requirements: TravelMode must be specified as Car.

\"\ },\ \"DepartNow\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

Sets the time of departure as the current time. Uses the current time to calculate a route. Otherwise, the best time of day to travel with the best traffic conditions is used to calculate the route.

Default Value: false

Valid Values: false | true

\"\ },\ \"DeparturePosition\":{\ \"shape\":\"Position\",\ \"documentation\":\"

The start position for the route. Defined in World Geodetic System (WGS 84) format: [longitude, latitude].

If you specify a departure that's not located on a road, Amazon Location moves the position to the nearest road. If Esri is the provider for your route calculator, specifying a route that is longer than 400 km returns a 400 RoutesValidationException error.

Valid Values: [-180 to 180,-90 to 90]

\"\ },\ \"DepartureTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

Specifies the desired time of departure. Uses the given time to calculate the route. Otherwise, the best time of day to travel with the best traffic conditions is used to calculate the route.

Setting a departure time in the past returns a 400 ValidationException error.

\"\ },\ \"DestinationPosition\":{\ \"shape\":\"Position\",\ \"documentation\":\"

The finish position for the route. Defined in World Geodetic System (WGS 84) format: [longitude, latitude].

If you specify a destination that's not located on a road, Amazon Location moves the position to the nearest road.

Valid Values: [-180 to 180,-90 to 90]

\"\ },\ \"DistanceUnit\":{\ \"shape\":\"DistanceUnit\",\ \"documentation\":\"

Set the unit system to specify the distance.

Default Value: Kilometers

\"\ },\ \"IncludeLegGeometry\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

Set to include the geometry details in the result for each path between a pair of positions.

Default Value: false

Valid Values: false | true

\"\ },\ \"Key\":{\ \"shape\":\"ApiKey\",\ \"documentation\":\"

The optional API key to authorize the request.

\",\ \"location\":\"querystring\",\ \"locationName\":\"key\"\ },\ \"TravelMode\":{\ \"shape\":\"TravelMode\",\ \"documentation\":\"

Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility. You can choose Car, Truck, Walking, Bicycle or Motorcycle as options for the TravelMode.

Bicycle and Motorcycle are only valid when using Grab as a data provider, and only within Southeast Asia.

Truck is not available for Grab.

For more details on the using Grab for routing, including areas of coverage, see GrabMaps in the Amazon Location Service Developer Guide.

The TravelMode you specify also determines how you specify route preferences:

Default Value: Car

\"\ },\ \"TruckModeOptions\":{\ \"shape\":\"CalculateRouteTruckModeOptions\",\ \"documentation\":\"

Specifies route preferences when traveling by Truck, such as avoiding routes that use ferries or tolls, and truck specifications to consider when choosing an optimal road.

Requirements: TravelMode must be specified as Truck.

\"\ },\ \"WaypointPositions\":{\ \"shape\":\"CalculateRouteRequestWaypointPositionsList\",\ \"documentation\":\"

Specifies an ordered list of up to 23 intermediate positions to include along a route between the departure position and destination position.

If you specify a waypoint position that's not located on a road, Amazon Location moves the position to the nearest road.

Specifying more than 23 waypoints returns a 400 ValidationException error.

If Esri is the provider for your route calculator, specifying a route that is longer than 400 km returns a 400 RoutesValidationException error.

Valid Values: [-180 to 180,-90 to 90]

\"\ }\ }\ },\ \"CalculateRouteRequestWaypointPositionsList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Position\"},\ \"max\":23,\ \"min\":0\ },\ \"CalculateRouteResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"Legs\",\ \"Summary\"\ ],\ \"members\":{\ \"Legs\":{\ \"shape\":\"LegList\",\ \"documentation\":\"

Contains details about each path between a pair of positions included along a route such as: StartPosition, EndPosition, Distance, DurationSeconds, Geometry, and Steps. The number of legs returned corresponds to one fewer than the total number of positions in the request.

For example, a route with a departure position and destination position returns one leg with the positions snapped to a nearby road:

A route with a waypoint between the departure and destination position returns two legs with the positions snapped to a nearby road:

\"\ },\ \"Summary\":{\ \"shape\":\"CalculateRouteSummary\",\ \"documentation\":\"

Contains information about the whole route, such as: RouteBBox, DataSource, Distance, DistanceUnit, and DurationSeconds.

\"\ }\ },\ \"documentation\":\"

Returns the result of the route calculation. Metadata includes legs and route summary.

\"\ },\ \"CalculateRouteSummary\":{\ \"type\":\"structure\",\ \"required\":[\ \"DataSource\",\ \"Distance\",\ \"DistanceUnit\",\ \"DurationSeconds\",\ \"RouteBBox\"\ ],\ \"members\":{\ \"DataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

The data provider of traffic and road network data used to calculate the route. Indicates one of the available providers:

For more information about data providers, see Amazon Location Service data providers.

\"\ },\ \"Distance\":{\ \"shape\":\"CalculateRouteSummaryDistanceDouble\",\ \"documentation\":\"

The total distance covered by the route. The sum of the distance travelled between every stop on the route.

If Esri is the data source for the route calculator, the route distance can’t be greater than 400 km. If the route exceeds 400 km, the response is a 400 RoutesValidationException error.

\"\ },\ \"DistanceUnit\":{\ \"shape\":\"DistanceUnit\",\ \"documentation\":\"

The unit of measurement for route distances.

\"\ },\ \"DurationSeconds\":{\ \"shape\":\"CalculateRouteSummaryDurationSecondsDouble\",\ \"documentation\":\"

The total travel time for the route measured in seconds. The sum of the travel time between every stop on the route.

\"\ },\ \"RouteBBox\":{\ \"shape\":\"BoundingBox\",\ \"documentation\":\"

Specifies a geographical box surrounding a route. Used to zoom into a route when displaying it in a map. For example, [min x, min y, max x, max y].

The first 2 bbox parameters describe the lower southwest corner:

The next 2 bbox parameters describe the upper northeast corner:

\"\ }\ },\ \"documentation\":\"

A summary of the calculated route.

\"\ },\ \"CalculateRouteSummaryDistanceDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"CalculateRouteSummaryDurationSecondsDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"CalculateRouteTruckModeOptions\":{\ \"type\":\"structure\",\ \"members\":{\ \"AvoidFerries\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

Avoids ferries when calculating routes.

Default Value: false

Valid Values: false | true

\"\ },\ \"AvoidTolls\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

Avoids tolls when calculating routes.

Default Value: false

Valid Values: false | true

\"\ },\ \"Dimensions\":{\ \"shape\":\"TruckDimensions\",\ \"documentation\":\"

Specifies the truck's dimension specifications including length, height, width, and unit of measurement. Used to avoid roads that can't support the truck's dimensions.

\"\ },\ \"Weight\":{\ \"shape\":\"TruckWeight\",\ \"documentation\":\"

Specifies the truck's weight specifications including total weight and unit of measurement. Used to avoid roads that can't support the truck's weight.

\"\ }\ },\ \"documentation\":\"

Contains details about additional route preferences for requests that specify TravelMode as Truck.

\"\ },\ \"Circle\":{\ \"type\":\"structure\",\ \"required\":[\ \"Center\",\ \"Radius\"\ ],\ \"members\":{\ \"Center\":{\ \"shape\":\"Position\",\ \"documentation\":\"

A single point geometry, specifying the center of the circle, using WGS 84 coordinates, in the form [longitude, latitude].

\"\ },\ \"Radius\":{\ \"shape\":\"Double\",\ \"documentation\":\"

The radius of the circle in meters. Must be greater than zero and no larger than 100,000 (100 kilometers).

\"\ }\ },\ \"documentation\":\"

A circle on the earth, as defined by a center point and a radius.

\",\ \"sensitive\":true\ },\ \"ConflictException\":{\ \"type\":\"structure\",\ \"required\":[\"Message\"],\ \"members\":{\ \"Message\":{\ \"shape\":\"String\",\ \"locationName\":\"message\"\ }\ },\ \"documentation\":\"

The request was unsuccessful because of a conflict.

\",\ \"error\":{\ \"httpStatusCode\":409,\ \"senderFault\":true\ },\ \"exception\":true\ },\ \"CountryCode\":{\ \"type\":\"string\",\ \"pattern\":\"^[A-Z]{3}$\"\ },\ \"CountryCode3\":{\ \"type\":\"string\",\ \"max\":3,\ \"min\":3,\ \"pattern\":\"^[A-Z]{3}$\"\ },\ \"CountryCode3OrEmpty\":{\ \"type\":\"string\",\ \"max\":3,\ \"min\":0,\ \"pattern\":\"^[A-Z]{3}$|^$\"\ },\ \"CountryCodeList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"CountryCode\"},\ \"max\":100,\ \"min\":1\ },\ \"CreateGeofenceCollectionRequest\":{\ \"type\":\"structure\",\ \"required\":[\"CollectionName\"],\ \"members\":{\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

A custom name for the geofence collection.

Requirements:

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

An optional description for the geofence collection.

\"\ },\ \"KmsKeyId\":{\ \"shape\":\"KmsKeyId\",\ \"documentation\":\"

A key identifier for an Amazon Web Services KMS customer managed key. Enter a key ID, key ARN, alias name, or alias ARN.

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. If included, the only allowed value is RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. If included, the only allowed value is RequestBasedUsage.\"\ },\ \"PricingPlanDataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

This parameter is no longer used.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. No longer allowed.\"\ },\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

Applies one or more tags to the geofence collection. A tag is a key-value pair helps manage, identify, search, and filter your resources by labelling them.

Format: \\\"key\\\" : \\\"value\\\"

Restrictions:

\"\ }\ }\ },\ \"CreateGeofenceCollectionResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CollectionArn\",\ \"CollectionName\",\ \"CreateTime\"\ ],\ \"members\":{\ \"CollectionArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the geofence collection resource. Used when you need to specify a resource across all Amazon Web Services.

\"\ },\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name for the geofence collection.

\"\ },\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the geofence collection was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ }\ }\ },\ \"CreateKeyRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"KeyName\",\ \"Restrictions\"\ ],\ \"members\":{\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

An optional description for the API key resource.

\"\ },\ \"ExpireTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The optional timestamp for when the API key resource will expire in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ. One of NoExpiry or ExpireTime must be set.

\"\ },\ \"KeyName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

A custom name for the API key resource.

Requirements:

\"\ },\ \"NoExpiry\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

Optionally set to true to set no expiration time for the API key. One of NoExpiry or ExpireTime must be set.

\"\ },\ \"Restrictions\":{\ \"shape\":\"ApiKeyRestrictions\",\ \"documentation\":\"

The API key restrictions for the API key resource.

\"\ },\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

Applies one or more tags to the map resource. A tag is a key-value pair that helps manage, identify, search, and filter your resources by labelling them.

Format: \\\"key\\\" : \\\"value\\\"

Restrictions:

\"\ }\ }\ },\ \"CreateKeyResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"Key\",\ \"KeyArn\",\ \"KeyName\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the API key resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"Key\":{\ \"shape\":\"ApiKey\",\ \"documentation\":\"

The key value/string of an API key. This value is used when making API calls to authorize the call. For example, see GetMapGlyphs.

\"\ },\ \"KeyArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the API key resource. Used when you need to specify a resource across all Amazon Web Services.

\"\ },\ \"KeyName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the API key resource.

\"\ }\ }\ },\ \"CreateMapRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"Configuration\",\ \"MapName\"\ ],\ \"members\":{\ \"Configuration\":{\ \"shape\":\"MapConfiguration\",\ \"documentation\":\"

Specifies the MapConfiguration, including the map style, for the map resource that you create. The map style defines the look of maps and the data provider for your map resource.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

An optional description for the map resource.

\"\ },\ \"MapName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name for the map resource.

Requirements:

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. If included, the only allowed value is RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. If included, the only allowed value is RequestBasedUsage.\"\ },\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

Applies one or more tags to the map resource. A tag is a key-value pair helps manage, identify, search, and filter your resources by labelling them.

Format: \\\"key\\\" : \\\"value\\\"

Restrictions:

\"\ }\ }\ },\ \"CreateMapResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"MapArn\",\ \"MapName\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the map resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"MapArn\":{\ \"shape\":\"GeoArn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the map resource. Used to specify a resource across all Amazon Web Services.

\"\ },\ \"MapName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the map resource.

\"\ }\ }\ },\ \"CreatePlaceIndexRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"DataSource\",\ \"IndexName\"\ ],\ \"members\":{\ \"DataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

Specifies the geospatial data provider for the new place index.

This field is case-sensitive. Enter the valid values as shown. For example, entering HERE returns an error.

Valid values include:

For additional information , see Data providers on the Amazon Location Service Developer Guide.

\"\ },\ \"DataSourceConfiguration\":{\ \"shape\":\"DataSourceConfiguration\",\ \"documentation\":\"

Specifies the data storage option requesting Places.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The optional description for the place index resource.

\"\ },\ \"IndexName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the place index resource.

Requirements:

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. If included, the only allowed value is RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. If included, the only allowed value is RequestBasedUsage.\"\ },\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

Applies one or more tags to the place index resource. A tag is a key-value pair that helps you manage, identify, search, and filter your resources.

Format: \\\"key\\\" : \\\"value\\\"

Restrictions:

\"\ }\ }\ },\ \"CreatePlaceIndexResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"IndexArn\",\ \"IndexName\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the place index resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"IndexArn\":{\ \"shape\":\"GeoArn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the place index resource. Used to specify a resource across Amazon Web Services.

\"\ },\ \"IndexName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name for the place index resource.

\"\ }\ }\ },\ \"CreateRouteCalculatorRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"CalculatorName\",\ \"DataSource\"\ ],\ \"members\":{\ \"CalculatorName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the route calculator resource.

Requirements:

\"\ },\ \"DataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

Specifies the data provider of traffic and road network data.

This field is case-sensitive. Enter the valid values as shown. For example, entering HERE returns an error.

Valid values include:

For additional information , see Data providers on the Amazon Location Service Developer Guide.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The optional description for the route calculator resource.

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. If included, the only allowed value is RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. If included, the only allowed value is RequestBasedUsage.\"\ },\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

Applies one or more tags to the route calculator resource. A tag is a key-value pair helps manage, identify, search, and filter your resources by labelling them.

Format: \\\"key\\\" : \\\"value\\\"

Restrictions:

\"\ }\ }\ },\ \"CreateRouteCalculatorResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CalculatorArn\",\ \"CalculatorName\",\ \"CreateTime\"\ ],\ \"members\":{\ \"CalculatorArn\":{\ \"shape\":\"GeoArn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the route calculator resource. Use the ARN when you specify a resource across all Amazon Web Services.

\"\ },\ \"CalculatorName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the route calculator resource.

\"\ },\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp when the route calculator resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ }\ },\ \"CreateTrackerRequest\":{\ \"type\":\"structure\",\ \"required\":[\"TrackerName\"],\ \"members\":{\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

An optional description for the tracker resource.

\"\ },\ \"EventBridgeEnabled\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

Whether to enable position UPDATE events from this tracker to be sent to EventBridge.

You do not need enable this feature to get ENTER and EXIT events for geofences with this tracker. Those events are always sent to EventBridge.

\"\ },\ \"KmsKeyId\":{\ \"shape\":\"KmsKeyId\",\ \"documentation\":\"

A key identifier for an Amazon Web Services KMS customer managed key. Enter a key ID, key ARN, alias name, or alias ARN.

\"\ },\ \"PositionFiltering\":{\ \"shape\":\"PositionFiltering\",\ \"documentation\":\"

Specifies the position filtering for the tracker resource.

Valid values:

This field is optional. If not specified, the default value is TimeBased.

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. If included, the only allowed value is RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. If included, the only allowed value is RequestBasedUsage.\"\ },\ \"PricingPlanDataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

This parameter is no longer used.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. No longer allowed.\"\ },\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

Applies one or more tags to the tracker resource. A tag is a key-value pair helps manage, identify, search, and filter your resources by labelling them.

Format: \\\"key\\\" : \\\"value\\\"

Restrictions:

\"\ },\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name for the tracker resource.

Requirements:

\"\ }\ }\ },\ \"CreateTrackerResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"TrackerArn\",\ \"TrackerName\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the tracker resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"TrackerArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource across all Amazon Web Services.

\"\ },\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the tracker resource.

\"\ }\ }\ },\ \"DataSourceConfiguration\":{\ \"type\":\"structure\",\ \"members\":{\ \"IntendedUse\":{\ \"shape\":\"IntendedUse\",\ \"documentation\":\"

Specifies how the results of an operation will be stored by the caller.

Valid values include:

Default value: SingleUse

\"\ }\ },\ \"documentation\":\"

Specifies the data storage option chosen for requesting Places.

When using Amazon Location Places:

For more information, see the AWS Service Terms for Amazon Location Service.

\"\ },\ \"DeleteGeofenceCollectionRequest\":{\ \"type\":\"structure\",\ \"required\":[\"CollectionName\"],\ \"members\":{\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the geofence collection to be deleted.

\",\ \"location\":\"uri\",\ \"locationName\":\"CollectionName\"\ }\ }\ },\ \"DeleteGeofenceCollectionResponse\":{\ \"type\":\"structure\",\ \"members\":{\ }\ },\ \"DeleteKeyRequest\":{\ \"type\":\"structure\",\ \"required\":[\"KeyName\"],\ \"members\":{\ \"KeyName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the API key to delete.

\",\ \"location\":\"uri\",\ \"locationName\":\"KeyName\"\ }\ }\ },\ \"DeleteKeyResponse\":{\ \"type\":\"structure\",\ \"members\":{\ }\ },\ \"DeleteMapRequest\":{\ \"type\":\"structure\",\ \"required\":[\"MapName\"],\ \"members\":{\ \"MapName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the map resource to be deleted.

\",\ \"location\":\"uri\",\ \"locationName\":\"MapName\"\ }\ }\ },\ \"DeleteMapResponse\":{\ \"type\":\"structure\",\ \"members\":{\ }\ },\ \"DeletePlaceIndexRequest\":{\ \"type\":\"structure\",\ \"required\":[\"IndexName\"],\ \"members\":{\ \"IndexName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the place index resource to be deleted.

\",\ \"location\":\"uri\",\ \"locationName\":\"IndexName\"\ }\ }\ },\ \"DeletePlaceIndexResponse\":{\ \"type\":\"structure\",\ \"members\":{\ }\ },\ \"DeleteRouteCalculatorRequest\":{\ \"type\":\"structure\",\ \"required\":[\"CalculatorName\"],\ \"members\":{\ \"CalculatorName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the route calculator resource to be deleted.

\",\ \"location\":\"uri\",\ \"locationName\":\"CalculatorName\"\ }\ }\ },\ \"DeleteRouteCalculatorResponse\":{\ \"type\":\"structure\",\ \"members\":{\ }\ },\ \"DeleteTrackerRequest\":{\ \"type\":\"structure\",\ \"required\":[\"TrackerName\"],\ \"members\":{\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the tracker resource to be deleted.

\",\ \"location\":\"uri\",\ \"locationName\":\"TrackerName\"\ }\ }\ },\ \"DeleteTrackerResponse\":{\ \"type\":\"structure\",\ \"members\":{\ }\ },\ \"DescribeGeofenceCollectionRequest\":{\ \"type\":\"structure\",\ \"required\":[\"CollectionName\"],\ \"members\":{\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the geofence collection.

\",\ \"location\":\"uri\",\ \"locationName\":\"CollectionName\"\ }\ }\ },\ \"DescribeGeofenceCollectionResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CollectionArn\",\ \"CollectionName\",\ \"CreateTime\",\ \"Description\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CollectionArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the geofence collection resource. Used when you need to specify a resource across all Amazon Web Services.

\"\ },\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the geofence collection.

\"\ },\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the geofence resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The optional description for the geofence collection.

\"\ },\ \"KmsKeyId\":{\ \"shape\":\"KmsKeyId\",\ \"documentation\":\"

A key identifier for an Amazon Web Services KMS customer managed key assigned to the Amazon Location resource

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. Always returns RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Always returns RequestBasedUsage.\"\ },\ \"PricingPlanDataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

No longer used. Always returns an empty string.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Unused.\"\ },\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

Displays the key, value pairs of tags associated with this resource.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the geofence collection was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ }\ }\ },\ \"DescribeKeyRequest\":{\ \"type\":\"structure\",\ \"required\":[\"KeyName\"],\ \"members\":{\ \"KeyName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the API key resource.

\",\ \"location\":\"uri\",\ \"locationName\":\"KeyName\"\ }\ }\ },\ \"DescribeKeyResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"ExpireTime\",\ \"Key\",\ \"KeyArn\",\ \"KeyName\",\ \"Restrictions\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the API key resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The optional description for the API key resource.

\"\ },\ \"ExpireTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the API key resource will expire in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"Key\":{\ \"shape\":\"ApiKey\",\ \"documentation\":\"

The key value/string of an API key.

\"\ },\ \"KeyArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the API key resource. Used when you need to specify a resource across all Amazon Web Services.

\"\ },\ \"KeyName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the API key resource.

\"\ },\ \"Restrictions\":{\"shape\":\"ApiKeyRestrictions\"},\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

Tags associated with the API key resource.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the API key resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ }\ },\ \"DescribeMapRequest\":{\ \"type\":\"structure\",\ \"required\":[\"MapName\"],\ \"members\":{\ \"MapName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the map resource.

\",\ \"location\":\"uri\",\ \"locationName\":\"MapName\"\ }\ }\ },\ \"DescribeMapResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"Configuration\",\ \"CreateTime\",\ \"DataSource\",\ \"Description\",\ \"MapArn\",\ \"MapName\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"Configuration\":{\ \"shape\":\"MapConfiguration\",\ \"documentation\":\"

Specifies the map tile style selected from a partner data provider.

\"\ },\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the map resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"DataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

Specifies the data provider for the associated map tiles.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The optional description for the map resource.

\"\ },\ \"MapArn\":{\ \"shape\":\"GeoArn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the map resource. Used to specify a resource across all Amazon Web Services.

\"\ },\ \"MapName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The map style selected from an available provider.

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. Always returns RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Always returns RequestBasedUsage.\"\ },\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

Tags associated with the map resource.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the map resource was last update in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ }\ },\ \"DescribePlaceIndexRequest\":{\ \"type\":\"structure\",\ \"required\":[\"IndexName\"],\ \"members\":{\ \"IndexName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the place index resource.

\",\ \"location\":\"uri\",\ \"locationName\":\"IndexName\"\ }\ }\ },\ \"DescribePlaceIndexResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"DataSource\",\ \"DataSourceConfiguration\",\ \"Description\",\ \"IndexArn\",\ \"IndexName\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the place index resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"DataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

The data provider of geospatial data. Values can be one of the following:

For more information about data providers, see Amazon Location Service data providers.

\"\ },\ \"DataSourceConfiguration\":{\ \"shape\":\"DataSourceConfiguration\",\ \"documentation\":\"

The specified data storage option for requesting Places.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The optional description for the place index resource.

\"\ },\ \"IndexArn\":{\ \"shape\":\"GeoArn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the place index resource. Used to specify a resource across Amazon Web Services.

\"\ },\ \"IndexName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the place index resource being described.

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. Always returns RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Always returns RequestBasedUsage.\"\ },\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

Tags associated with place index resource.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the place index resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ }\ },\ \"DescribeRouteCalculatorRequest\":{\ \"type\":\"structure\",\ \"required\":[\"CalculatorName\"],\ \"members\":{\ \"CalculatorName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the route calculator resource.

\",\ \"location\":\"uri\",\ \"locationName\":\"CalculatorName\"\ }\ }\ },\ \"DescribeRouteCalculatorResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CalculatorArn\",\ \"CalculatorName\",\ \"CreateTime\",\ \"DataSource\",\ \"Description\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CalculatorArn\":{\ \"shape\":\"GeoArn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the Route calculator resource. Use the ARN when you specify a resource across Amazon Web Services.

\"\ },\ \"CalculatorName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the route calculator resource being described.

\"\ },\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp when the route calculator resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"DataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

The data provider of traffic and road network data. Indicates one of the available providers:

For more information about data providers, see Amazon Location Service data providers.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The optional description of the route calculator resource.

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

Always returns RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Always returns RequestBasedUsage.\"\ },\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

Tags associated with route calculator resource.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp when the route calculator resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ }\ },\ \"DescribeTrackerRequest\":{\ \"type\":\"structure\",\ \"required\":[\"TrackerName\"],\ \"members\":{\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the tracker resource.

\",\ \"location\":\"uri\",\ \"locationName\":\"TrackerName\"\ }\ }\ },\ \"DescribeTrackerResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"Description\",\ \"TrackerArn\",\ \"TrackerName\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the tracker resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The optional description for the tracker resource.

\"\ },\ \"EventBridgeEnabled\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

Whether UPDATE events from this tracker in EventBridge are enabled. If set to true these events will be sent to EventBridge.

\"\ },\ \"KmsKeyId\":{\ \"shape\":\"KmsKeyId\",\ \"documentation\":\"

A key identifier for an Amazon Web Services KMS customer managed key assigned to the Amazon Location resource.

\"\ },\ \"PositionFiltering\":{\ \"shape\":\"PositionFiltering\",\ \"documentation\":\"

The position filtering method of the tracker resource.

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

Always returns RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Always returns RequestBasedUsage.\"\ },\ \"PricingPlanDataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

No longer used. Always returns an empty string.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Unused.\"\ },\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

The tags associated with the tracker resource.

\"\ },\ \"TrackerArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource across all Amazon Web Services.

\"\ },\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the tracker resource.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the tracker resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ }\ },\ \"DevicePosition\":{\ \"type\":\"structure\",\ \"required\":[\ \"Position\",\ \"ReceivedTime\",\ \"SampleTime\"\ ],\ \"members\":{\ \"Accuracy\":{\ \"shape\":\"PositionalAccuracy\",\ \"documentation\":\"

The accuracy of the device position.

\"\ },\ \"DeviceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The device whose position you retrieved.

\"\ },\ \"Position\":{\ \"shape\":\"Position\",\ \"documentation\":\"

The last known device position.

\"\ },\ \"PositionProperties\":{\ \"shape\":\"PropertyMap\",\ \"documentation\":\"

The properties associated with the position.

\"\ },\ \"ReceivedTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the tracker resource received the device position in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"SampleTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ },\ \"documentation\":\"

Contains the device position details.

\"\ },\ \"DevicePositionList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"DevicePosition\"}\ },\ \"DevicePositionUpdate\":{\ \"type\":\"structure\",\ \"required\":[\ \"DeviceId\",\ \"Position\",\ \"SampleTime\"\ ],\ \"members\":{\ \"Accuracy\":{\ \"shape\":\"PositionalAccuracy\",\ \"documentation\":\"

The accuracy of the device position.

\"\ },\ \"DeviceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The device associated to the position update.

\"\ },\ \"Position\":{\ \"shape\":\"Position\",\ \"documentation\":\"

The latest device position defined in WGS 84 format: [X or longitude, Y or latitude].

\"\ },\ \"PositionProperties\":{\ \"shape\":\"PropertyMap\",\ \"documentation\":\"

Associates one of more properties with the position update. A property is a key-value pair stored with the position update and added to any geofence event the update may trigger.

Format: \\\"key\\\" : \\\"value\\\"

\"\ },\ \"SampleTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ }\ },\ \"documentation\":\"

Contains the position update details for a device.

\"\ },\ \"DimensionUnit\":{\ \"type\":\"string\",\ \"enum\":[\ \"Meters\",\ \"Feet\"\ ]\ },\ \"DisassociateTrackerConsumerRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"ConsumerArn\",\ \"TrackerName\"\ ],\ \"members\":{\ \"ConsumerArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the geofence collection to be disassociated from the tracker resource. Used when you need to specify a resource across all Amazon Web Services.

\",\ \"location\":\"uri\",\ \"locationName\":\"ConsumerArn\"\ },\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the tracker resource to be dissociated from the consumer.

\",\ \"location\":\"uri\",\ \"locationName\":\"TrackerName\"\ }\ }\ },\ \"DisassociateTrackerConsumerResponse\":{\ \"type\":\"structure\",\ \"members\":{\ }\ },\ \"DistanceUnit\":{\ \"type\":\"string\",\ \"enum\":[\ \"Kilometers\",\ \"Miles\"\ ]\ },\ \"Double\":{\ \"type\":\"double\",\ \"box\":true\ },\ \"FilterPlaceCategoryList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"PlaceCategory\"},\ \"max\":5,\ \"min\":1\ },\ \"GeoArn\":{\ \"type\":\"string\",\ \"max\":1600,\ \"min\":0,\ \"pattern\":\"^arn(:[a-z0-9]+([.-][a-z0-9]+)*):geo(:([a-z0-9]+([.-][a-z0-9]+)*))(:[0-9]+):((\\\\*)|([-a-z]+[/][*-._\\\\w]+))$\"\ },\ \"GeofenceGeometry\":{\ \"type\":\"structure\",\ \"members\":{\ \"Circle\":{\ \"shape\":\"Circle\",\ \"documentation\":\"

A circle on the earth, as defined by a center point and a radius.

\"\ },\ \"Polygon\":{\ \"shape\":\"LinearRings\",\ \"documentation\":\"

A polygon is a list of linear rings which are each made up of a list of vertices.

Each vertex is a 2-dimensional point of the form: [longitude, latitude]. This is represented as an array of doubles of length 2 (so [double, double]).

An array of 4 or more vertices, where the first and last vertex are the same (to form a closed boundary), is called a linear ring. The linear ring vertices must be listed in counter-clockwise order around the ring’s interior. The linear ring is represented as an array of vertices, or an array of arrays of doubles ([[double, double], ...]).

A geofence consists of a single linear ring. To allow for future expansion, the Polygon parameter takes an array of linear rings, which is represented as an array of arrays of arrays of doubles ([[[double, double], ...], ...]).

A linear ring for use in geofences can consist of between 4 and 1,000 vertices.

\"\ }\ },\ \"documentation\":\"

Contains the geofence geometry details.

A geofence geometry is made up of either a polygon or a circle. Can be either a polygon or a circle. Including both will return a validation error.

Amazon Location doesn't currently support polygons with holes, multipolygons, polygons that are wound clockwise, or that cross the antimeridian.

\"\ },\ \"GetDevicePositionHistoryRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"DeviceId\",\ \"TrackerName\"\ ],\ \"members\":{\ \"DeviceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The device whose position history you want to retrieve.

\",\ \"location\":\"uri\",\ \"locationName\":\"DeviceId\"\ },\ \"EndTimeExclusive\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

Specify the end time for the position history in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ. By default, the value will be the time that the request is made.

Requirement:

\"\ },\ \"MaxResults\":{\ \"shape\":\"GetDevicePositionHistoryRequestMaxResultsInteger\",\ \"documentation\":\"

An optional limit for the number of device positions returned in a single call.

Default value: 100

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.

Default value: null

\"\ },\ \"StartTimeInclusive\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

Specify the start time for the position history in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ. By default, the value will be 24 hours prior to the time that the request is made.

Requirement:

\"\ },\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The tracker resource receiving the request for the device position history.

\",\ \"location\":\"uri\",\ \"locationName\":\"TrackerName\"\ }\ }\ },\ \"GetDevicePositionHistoryRequestMaxResultsInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"max\":100,\ \"min\":1\ },\ \"GetDevicePositionHistoryResponse\":{\ \"type\":\"structure\",\ \"required\":[\"DevicePositions\"],\ \"members\":{\ \"DevicePositions\":{\ \"shape\":\"DevicePositionList\",\ \"documentation\":\"

Contains the position history details for the requested device.

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

A pagination token indicating there are additional pages available. You can use the token in a following request to fetch the next set of results.

\"\ }\ }\ },\ \"GetDevicePositionRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"DeviceId\",\ \"TrackerName\"\ ],\ \"members\":{\ \"DeviceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The device whose position you want to retrieve.

\",\ \"location\":\"uri\",\ \"locationName\":\"DeviceId\"\ },\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The tracker resource receiving the position update.

\",\ \"location\":\"uri\",\ \"locationName\":\"TrackerName\"\ }\ }\ },\ \"GetDevicePositionResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"Position\",\ \"ReceivedTime\",\ \"SampleTime\"\ ],\ \"members\":{\ \"Accuracy\":{\ \"shape\":\"PositionalAccuracy\",\ \"documentation\":\"

The accuracy of the device position.

\"\ },\ \"DeviceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The device whose position you retrieved.

\"\ },\ \"Position\":{\ \"shape\":\"Position\",\ \"documentation\":\"

The last known device position.

\"\ },\ \"PositionProperties\":{\ \"shape\":\"PropertyMap\",\ \"documentation\":\"

The properties associated with the position.

\"\ },\ \"ReceivedTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the tracker resource received the device position in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"SampleTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ }\ },\ \"GetGeofenceRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"CollectionName\",\ \"GeofenceId\"\ ],\ \"members\":{\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The geofence collection storing the target geofence.

\",\ \"location\":\"uri\",\ \"locationName\":\"CollectionName\"\ },\ \"GeofenceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The geofence you're retrieving details for.

\",\ \"location\":\"uri\",\ \"locationName\":\"GeofenceId\"\ }\ }\ },\ \"GetGeofenceResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"GeofenceId\",\ \"Geometry\",\ \"Status\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the geofence collection was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ },\ \"GeofenceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The geofence identifier.

\"\ },\ \"GeofenceProperties\":{\ \"shape\":\"PropertyMap\",\ \"documentation\":\"

User defined properties of the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence.

Format: \\\"key\\\" : \\\"value\\\"

\"\ },\ \"Geometry\":{\ \"shape\":\"GeofenceGeometry\",\ \"documentation\":\"

Contains the geofence geometry details describing a polygon or a circle.

\"\ },\ \"Status\":{\ \"shape\":\"String\",\ \"documentation\":\"

Identifies the state of the geofence. A geofence will hold one of the following states:

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the geofence collection was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ }\ }\ },\ \"GetMapGlyphsRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"FontStack\",\ \"FontUnicodeRange\",\ \"MapName\"\ ],\ \"members\":{\ \"FontStack\":{\ \"shape\":\"String\",\ \"documentation\":\"

A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode.

Valid fonts stacks for Esri styles:

Valid font stacks for HERE Technologies styles:

Valid font stacks for GrabMaps styles:

Valid font stacks for Open Data styles:

The fonts used by the Open Data map styles are combined fonts that use Amazon Ember for most glyphs but Noto Sans for glyphs unsupported by Amazon Ember.

\",\ \"location\":\"uri\",\ \"locationName\":\"FontStack\"\ },\ \"FontUnicodeRange\":{\ \"shape\":\"GetMapGlyphsRequestFontUnicodeRangeString\",\ \"documentation\":\"

A Unicode range of characters to download glyphs for. Each response will contain 256 characters. For example, 0–255 includes all characters from range U+0000 to 00FF. Must be aligned to multiples of 256.

\",\ \"location\":\"uri\",\ \"locationName\":\"FontUnicodeRange\"\ },\ \"Key\":{\ \"shape\":\"ApiKey\",\ \"documentation\":\"

The optional API key to authorize the request.

\",\ \"location\":\"querystring\",\ \"locationName\":\"key\"\ },\ \"MapName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The map resource associated with the glyph file.

\",\ \"location\":\"uri\",\ \"locationName\":\"MapName\"\ }\ }\ },\ \"GetMapGlyphsRequestFontUnicodeRangeString\":{\ \"type\":\"string\",\ \"pattern\":\"^[0-9]+-[0-9]+\\\\.pbf$\"\ },\ \"GetMapGlyphsResponse\":{\ \"type\":\"structure\",\ \"members\":{\ \"Blob\":{\ \"shape\":\"Blob\",\ \"documentation\":\"

The glyph, as binary blob.

\"\ },\ \"CacheControl\":{\ \"shape\":\"String\",\ \"documentation\":\"

The HTTP Cache-Control directive for the value.

\",\ \"location\":\"header\",\ \"locationName\":\"Cache-Control\"\ },\ \"ContentType\":{\ \"shape\":\"String\",\ \"documentation\":\"

The map glyph content type. For example, application/octet-stream.

\",\ \"location\":\"header\",\ \"locationName\":\"Content-Type\"\ }\ },\ \"payload\":\"Blob\"\ },\ \"GetMapSpritesRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"FileName\",\ \"MapName\"\ ],\ \"members\":{\ \"FileName\":{\ \"shape\":\"GetMapSpritesRequestFileNameString\",\ \"documentation\":\"

The name of the sprite file. Use the following file names for the sprite sheet:

For the JSON document containing image offsets. Use the following file names:

\",\ \"location\":\"uri\",\ \"locationName\":\"FileName\"\ },\ \"Key\":{\ \"shape\":\"ApiKey\",\ \"documentation\":\"

The optional API key to authorize the request.

\",\ \"location\":\"querystring\",\ \"locationName\":\"key\"\ },\ \"MapName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The map resource associated with the sprite file.

\",\ \"location\":\"uri\",\ \"locationName\":\"MapName\"\ }\ }\ },\ \"GetMapSpritesRequestFileNameString\":{\ \"type\":\"string\",\ \"pattern\":\"^sprites(@2x)?\\\\.(png|json)$\"\ },\ \"GetMapSpritesResponse\":{\ \"type\":\"structure\",\ \"members\":{\ \"Blob\":{\ \"shape\":\"Blob\",\ \"documentation\":\"

Contains the body of the sprite sheet or JSON offset file.

\"\ },\ \"CacheControl\":{\ \"shape\":\"String\",\ \"documentation\":\"

The HTTP Cache-Control directive for the value.

\",\ \"location\":\"header\",\ \"locationName\":\"Cache-Control\"\ },\ \"ContentType\":{\ \"shape\":\"String\",\ \"documentation\":\"

The content type of the sprite sheet and offsets. For example, the sprite sheet content type is image/png, and the sprite offset JSON document is application/json.

\",\ \"location\":\"header\",\ \"locationName\":\"Content-Type\"\ }\ },\ \"payload\":\"Blob\"\ },\ \"GetMapStyleDescriptorRequest\":{\ \"type\":\"structure\",\ \"required\":[\"MapName\"],\ \"members\":{\ \"Key\":{\ \"shape\":\"ApiKey\",\ \"documentation\":\"

The optional API key to authorize the request.

\",\ \"location\":\"querystring\",\ \"locationName\":\"key\"\ },\ \"MapName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The map resource to retrieve the style descriptor from.

\",\ \"location\":\"uri\",\ \"locationName\":\"MapName\"\ }\ }\ },\ \"GetMapStyleDescriptorResponse\":{\ \"type\":\"structure\",\ \"members\":{\ \"Blob\":{\ \"shape\":\"Blob\",\ \"documentation\":\"

Contains the body of the style descriptor.

\"\ },\ \"CacheControl\":{\ \"shape\":\"String\",\ \"documentation\":\"

The HTTP Cache-Control directive for the value.

\",\ \"location\":\"header\",\ \"locationName\":\"Cache-Control\"\ },\ \"ContentType\":{\ \"shape\":\"String\",\ \"documentation\":\"

The style descriptor's content type. For example, application/json.

\",\ \"location\":\"header\",\ \"locationName\":\"Content-Type\"\ }\ },\ \"payload\":\"Blob\"\ },\ \"GetMapTileRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"MapName\",\ \"X\",\ \"Y\",\ \"Z\"\ ],\ \"members\":{\ \"Key\":{\ \"shape\":\"ApiKey\",\ \"documentation\":\"

The optional API key to authorize the request.

\",\ \"location\":\"querystring\",\ \"locationName\":\"key\"\ },\ \"MapName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The map resource to retrieve the map tiles from.

\",\ \"location\":\"uri\",\ \"locationName\":\"MapName\"\ },\ \"X\":{\ \"shape\":\"GetMapTileRequestXString\",\ \"documentation\":\"

The X axis value for the map tile.

\",\ \"location\":\"uri\",\ \"locationName\":\"X\"\ },\ \"Y\":{\ \"shape\":\"GetMapTileRequestYString\",\ \"documentation\":\"

The Y axis value for the map tile.

\",\ \"location\":\"uri\",\ \"locationName\":\"Y\"\ },\ \"Z\":{\ \"shape\":\"GetMapTileRequestZString\",\ \"documentation\":\"

The zoom value for the map tile.

\",\ \"location\":\"uri\",\ \"locationName\":\"Z\"\ }\ }\ },\ \"GetMapTileRequestXString\":{\ \"type\":\"string\",\ \"pattern\":\"\\\\d+\"\ },\ \"GetMapTileRequestYString\":{\ \"type\":\"string\",\ \"pattern\":\"\\\\d+\"\ },\ \"GetMapTileRequestZString\":{\ \"type\":\"string\",\ \"pattern\":\"\\\\d+\"\ },\ \"GetMapTileResponse\":{\ \"type\":\"structure\",\ \"members\":{\ \"Blob\":{\ \"shape\":\"Blob\",\ \"documentation\":\"

Contains Mapbox Vector Tile (MVT) data.

\"\ },\ \"CacheControl\":{\ \"shape\":\"String\",\ \"documentation\":\"

The HTTP Cache-Control directive for the value.

\",\ \"location\":\"header\",\ \"locationName\":\"Cache-Control\"\ },\ \"ContentType\":{\ \"shape\":\"String\",\ \"documentation\":\"

The map tile's content type. For example, application/vnd.mapbox-vector-tile.

\",\ \"location\":\"header\",\ \"locationName\":\"Content-Type\"\ }\ },\ \"payload\":\"Blob\"\ },\ \"GetPlaceRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"IndexName\",\ \"PlaceId\"\ ],\ \"members\":{\ \"IndexName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the place index resource that you want to use for the search.

\",\ \"location\":\"uri\",\ \"locationName\":\"IndexName\"\ },\ \"Key\":{\ \"shape\":\"ApiKey\",\ \"documentation\":\"

The optional API key to authorize the request.

\",\ \"location\":\"querystring\",\ \"locationName\":\"key\"\ },\ \"Language\":{\ \"shape\":\"LanguageTag\",\ \"documentation\":\"

The preferred language used to return results. The value must be a valid BCP 47 language tag, for example, en for English.

This setting affects the languages used in the results, but not the results themselves. If no language is specified, or not supported for a particular result, the partner automatically chooses a language for the result.

For an example, we'll use the Greek language. You search for a location around Athens, Greece, with the language parameter set to en. The city in the results will most likely be returned as Athens.

If you set the language parameter to el, for Greek, then the city in the results will more likely be returned as Αθήνα.

If the data provider does not have a value for Greek, the result will be in a language that the provider does support.

\",\ \"location\":\"querystring\",\ \"locationName\":\"language\"\ },\ \"PlaceId\":{\ \"shape\":\"PlaceId\",\ \"documentation\":\"

The identifier of the place to find.

\",\ \"location\":\"uri\",\ \"locationName\":\"PlaceId\"\ }\ }\ },\ \"GetPlaceResponse\":{\ \"type\":\"structure\",\ \"required\":[\"Place\"],\ \"members\":{\ \"Place\":{\ \"shape\":\"Place\",\ \"documentation\":\"

Details about the result, such as its address and position.

\"\ }\ }\ },\ \"Id\":{\ \"type\":\"string\",\ \"max\":100,\ \"min\":1,\ \"pattern\":\"^[-._\\\\p{L}\\\\p{N}]+$\"\ },\ \"Integer\":{\ \"type\":\"integer\",\ \"box\":true\ },\ \"IntendedUse\":{\ \"type\":\"string\",\ \"enum\":[\ \"SingleUse\",\ \"Storage\"\ ]\ },\ \"InternalServerException\":{\ \"type\":\"structure\",\ \"required\":[\"Message\"],\ \"members\":{\ \"Message\":{\ \"shape\":\"String\",\ \"locationName\":\"message\"\ }\ },\ \"documentation\":\"

The request has failed to process because of an unknown server error, exception, or failure.

\",\ \"error\":{\"httpStatusCode\":500},\ \"exception\":true,\ \"fault\":true,\ \"retryable\":{\"throttling\":false}\ },\ \"KmsKeyId\":{\ \"type\":\"string\",\ \"max\":2048,\ \"min\":1\ },\ \"LanguageTag\":{\ \"type\":\"string\",\ \"max\":35,\ \"min\":2\ },\ \"Leg\":{\ \"type\":\"structure\",\ \"required\":[\ \"Distance\",\ \"DurationSeconds\",\ \"EndPosition\",\ \"StartPosition\",\ \"Steps\"\ ],\ \"members\":{\ \"Distance\":{\ \"shape\":\"LegDistanceDouble\",\ \"documentation\":\"

The distance between the leg's StartPosition and EndPosition along a calculated route.

\"\ },\ \"DurationSeconds\":{\ \"shape\":\"LegDurationSecondsDouble\",\ \"documentation\":\"

The estimated travel time between the leg's StartPosition and EndPosition. The travel mode and departure time that you specify in the request determines the calculated time.

\"\ },\ \"EndPosition\":{\ \"shape\":\"Position\",\ \"documentation\":\"

The terminating position of the leg. Follows the format [longitude,latitude].

If the EndPosition isn't located on a road, it's snapped to a nearby road.

\"\ },\ \"Geometry\":{\ \"shape\":\"LegGeometry\",\ \"documentation\":\"

Contains the calculated route's path as a linestring geometry.

\"\ },\ \"StartPosition\":{\ \"shape\":\"Position\",\ \"documentation\":\"

The starting position of the leg. Follows the format [longitude,latitude].

If the StartPosition isn't located on a road, it's snapped to a nearby road.

\"\ },\ \"Steps\":{\ \"shape\":\"StepList\",\ \"documentation\":\"

Contains a list of steps, which represent subsections of a leg. Each step provides instructions for how to move to the next step in the leg such as the step's start position, end position, travel distance, travel duration, and geometry offset.

\"\ }\ },\ \"documentation\":\"

Contains the calculated route's details for each path between a pair of positions. The number of legs returned corresponds to one fewer than the total number of positions in the request.

For example, a route with a departure position and destination position returns one leg with the positions snapped to a nearby road:

A route with a waypoint between the departure and destination position returns two legs with the positions snapped to a nearby road:

\"\ },\ \"LegDistanceDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"LegDurationSecondsDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"LegGeometry\":{\ \"type\":\"structure\",\ \"members\":{\ \"LineString\":{\ \"shape\":\"LineString\",\ \"documentation\":\"

An ordered list of positions used to plot a route on a map.

The first position is closest to the start position for the leg, and the last position is the closest to the end position for the leg.

\"\ }\ },\ \"documentation\":\"

Contains the geometry details for each path between a pair of positions. Used in plotting a route leg on a map.

\"\ },\ \"LegList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Leg\"}\ },\ \"LineString\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Position\"},\ \"min\":2\ },\ \"LinearRing\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Position\"},\ \"min\":4\ },\ \"LinearRings\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"LinearRing\"},\ \"min\":1\ },\ \"ListDevicePositionsRequest\":{\ \"type\":\"structure\",\ \"required\":[\"TrackerName\"],\ \"members\":{\ \"MaxResults\":{\ \"shape\":\"ListDevicePositionsRequestMaxResultsInteger\",\ \"documentation\":\"

An optional limit for the number of entries returned in a single call.

Default value: 100

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.

Default value: null

\"\ },\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The tracker resource containing the requested devices.

\",\ \"location\":\"uri\",\ \"locationName\":\"TrackerName\"\ }\ }\ },\ \"ListDevicePositionsRequestMaxResultsInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"max\":100,\ \"min\":1\ },\ \"ListDevicePositionsResponse\":{\ \"type\":\"structure\",\ \"required\":[\"Entries\"],\ \"members\":{\ \"Entries\":{\ \"shape\":\"ListDevicePositionsResponseEntryList\",\ \"documentation\":\"

Contains details about each device's last known position. These details includes the device ID, the time when the position was sampled on the device, the time that the service received the update, and the most recent coordinates.

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

A pagination token indicating there are additional pages available. You can use the token in a following request to fetch the next set of results.

\"\ }\ }\ },\ \"ListDevicePositionsResponseEntry\":{\ \"type\":\"structure\",\ \"required\":[\ \"DeviceId\",\ \"Position\",\ \"SampleTime\"\ ],\ \"members\":{\ \"Accuracy\":{\ \"shape\":\"PositionalAccuracy\",\ \"documentation\":\"

The accuracy of the device position.

\"\ },\ \"DeviceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The ID of the device for this position.

\"\ },\ \"Position\":{\ \"shape\":\"Position\",\ \"documentation\":\"

The last known device position. Empty if no positions currently stored.

\"\ },\ \"PositionProperties\":{\ \"shape\":\"PropertyMap\",\ \"documentation\":\"

The properties associated with the position.

\"\ },\ \"SampleTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp at which the device position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ },\ \"documentation\":\"

Contains the tracker resource details.

\"\ },\ \"ListDevicePositionsResponseEntryList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"ListDevicePositionsResponseEntry\"}\ },\ \"ListGeofenceCollectionsRequest\":{\ \"type\":\"structure\",\ \"members\":{\ \"MaxResults\":{\ \"shape\":\"ListGeofenceCollectionsRequestMaxResultsInteger\",\ \"documentation\":\"

An optional limit for the number of resources returned in a single call.

Default value: 100

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.

Default value: null

\"\ }\ }\ },\ \"ListGeofenceCollectionsRequestMaxResultsInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"max\":100,\ \"min\":1\ },\ \"ListGeofenceCollectionsResponse\":{\ \"type\":\"structure\",\ \"required\":[\"Entries\"],\ \"members\":{\ \"Entries\":{\ \"shape\":\"ListGeofenceCollectionsResponseEntryList\",\ \"documentation\":\"

Lists the geofence collections that exist in your Amazon Web Services account.

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

A pagination token indicating there are additional pages available. You can use the token in a following request to fetch the next set of results.

\"\ }\ }\ },\ \"ListGeofenceCollectionsResponseEntry\":{\ \"type\":\"structure\",\ \"required\":[\ \"CollectionName\",\ \"CreateTime\",\ \"Description\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the geofence collection.

\"\ },\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the geofence collection was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The description for the geofence collection

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. Always returns RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Always returns RequestBasedUsage.\"\ },\ \"PricingPlanDataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

No longer used. Always returns an empty string.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Unused.\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

Specifies a timestamp for when the resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ }\ },\ \"documentation\":\"

Contains the geofence collection details.

\"\ },\ \"ListGeofenceCollectionsResponseEntryList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"ListGeofenceCollectionsResponseEntry\"}\ },\ \"ListGeofenceResponseEntry\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"GeofenceId\",\ \"Geometry\",\ \"Status\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the geofence was stored in a geofence collection in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ },\ \"GeofenceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The geofence identifier.

\"\ },\ \"GeofenceProperties\":{\ \"shape\":\"PropertyMap\",\ \"documentation\":\"

User defined properties of the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence.

Format: \\\"key\\\" : \\\"value\\\"

\"\ },\ \"Geometry\":{\ \"shape\":\"GeofenceGeometry\",\ \"documentation\":\"

Contains the geofence geometry details describing a polygon or a circle.

\"\ },\ \"Status\":{\ \"shape\":\"String\",\ \"documentation\":\"

Identifies the state of the geofence. A geofence will hold one of the following states:

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the geofence was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ }\ },\ \"documentation\":\"

Contains a list of geofences stored in a given geofence collection.

\"\ },\ \"ListGeofenceResponseEntryList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"ListGeofenceResponseEntry\"}\ },\ \"ListGeofencesRequest\":{\ \"type\":\"structure\",\ \"required\":[\"CollectionName\"],\ \"members\":{\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the geofence collection storing the list of geofences.

\",\ \"location\":\"uri\",\ \"locationName\":\"CollectionName\"\ },\ \"MaxResults\":{\ \"shape\":\"ListGeofencesRequestMaxResultsInteger\",\ \"documentation\":\"

An optional limit for the number of geofences returned in a single call.

Default value: 100

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.

Default value: null

\"\ }\ }\ },\ \"ListGeofencesRequestMaxResultsInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"max\":100,\ \"min\":1\ },\ \"ListGeofencesResponse\":{\ \"type\":\"structure\",\ \"required\":[\"Entries\"],\ \"members\":{\ \"Entries\":{\ \"shape\":\"ListGeofenceResponseEntryList\",\ \"documentation\":\"

Contains a list of geofences stored in the geofence collection.

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

A pagination token indicating there are additional pages available. You can use the token in a following request to fetch the next set of results.

\"\ }\ }\ },\ \"ListKeysRequest\":{\ \"type\":\"structure\",\ \"members\":{\ \"Filter\":{\ \"shape\":\"ApiKeyFilter\",\ \"documentation\":\"

Optionally filter the list to only Active or Expired API keys.

\"\ },\ \"MaxResults\":{\ \"shape\":\"ListKeysRequestMaxResultsInteger\",\ \"documentation\":\"

An optional limit for the number of resources returned in a single call.

Default value: 100

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.

Default value: null

\"\ }\ }\ },\ \"ListKeysRequestMaxResultsInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"max\":100,\ \"min\":1\ },\ \"ListKeysResponse\":{\ \"type\":\"structure\",\ \"required\":[\"Entries\"],\ \"members\":{\ \"Entries\":{\ \"shape\":\"ListKeysResponseEntryList\",\ \"documentation\":\"

Contains API key resources in your Amazon Web Services account. Details include API key name, allowed referers and timestamp for when the API key will expire.

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

A pagination token indicating there are additional pages available. You can use the token in a following request to fetch the next set of results.

\"\ }\ }\ },\ \"ListKeysResponseEntry\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"ExpireTime\",\ \"KeyName\",\ \"Restrictions\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp of when the API key was created, in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The optional description for the API key resource.

\"\ },\ \"ExpireTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the API key resource will expire, in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"KeyName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the API key resource.

\"\ },\ \"Restrictions\":{\"shape\":\"ApiKeyRestrictions\"},\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp of when the API key was last updated, in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ },\ \"documentation\":\"

An API key resource listed in your Amazon Web Services account.

\"\ },\ \"ListKeysResponseEntryList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"ListKeysResponseEntry\"}\ },\ \"ListMapsRequest\":{\ \"type\":\"structure\",\ \"members\":{\ \"MaxResults\":{\ \"shape\":\"ListMapsRequestMaxResultsInteger\",\ \"documentation\":\"

An optional limit for the number of resources returned in a single call.

Default value: 100

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.

Default value: null

\"\ }\ }\ },\ \"ListMapsRequestMaxResultsInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"max\":100,\ \"min\":1\ },\ \"ListMapsResponse\":{\ \"type\":\"structure\",\ \"required\":[\"Entries\"],\ \"members\":{\ \"Entries\":{\ \"shape\":\"ListMapsResponseEntryList\",\ \"documentation\":\"

Contains a list of maps in your Amazon Web Services account

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

A pagination token indicating there are additional pages available. You can use the token in a following request to fetch the next set of results.

\"\ }\ }\ },\ \"ListMapsResponseEntry\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"DataSource\",\ \"Description\",\ \"MapName\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the map resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"DataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

Specifies the data provider for the associated map tiles.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The description for the map resource.

\"\ },\ \"MapName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the associated map resource.

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. Always returns RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Always returns RequestBasedUsage.\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the map resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ },\ \"documentation\":\"

Contains details of an existing map resource in your Amazon Web Services account.

\"\ },\ \"ListMapsResponseEntryList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"ListMapsResponseEntry\"}\ },\ \"ListPlaceIndexesRequest\":{\ \"type\":\"structure\",\ \"members\":{\ \"MaxResults\":{\ \"shape\":\"ListPlaceIndexesRequestMaxResultsInteger\",\ \"documentation\":\"

An optional limit for the maximum number of results returned in a single call.

Default value: 100

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.

Default value: null

\"\ }\ }\ },\ \"ListPlaceIndexesRequestMaxResultsInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"max\":100,\ \"min\":1\ },\ \"ListPlaceIndexesResponse\":{\ \"type\":\"structure\",\ \"required\":[\"Entries\"],\ \"members\":{\ \"Entries\":{\ \"shape\":\"ListPlaceIndexesResponseEntryList\",\ \"documentation\":\"

Lists the place index resources that exist in your Amazon Web Services account

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

A pagination token indicating that there are additional pages available. You can use the token in a new request to fetch the next page of results.

\"\ }\ }\ },\ \"ListPlaceIndexesResponseEntry\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"DataSource\",\ \"Description\",\ \"IndexName\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the place index resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"DataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

The data provider of geospatial data. Values can be one of the following:

For more information about data providers, see Amazon Location Service data providers.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The optional description for the place index resource.

\"\ },\ \"IndexName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the place index resource.

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. Always returns RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Always returns RequestBasedUsage.\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the place index resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ },\ \"documentation\":\"

A place index resource listed in your Amazon Web Services account.

\"\ },\ \"ListPlaceIndexesResponseEntryList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"ListPlaceIndexesResponseEntry\"}\ },\ \"ListRouteCalculatorsRequest\":{\ \"type\":\"structure\",\ \"members\":{\ \"MaxResults\":{\ \"shape\":\"ListRouteCalculatorsRequestMaxResultsInteger\",\ \"documentation\":\"

An optional maximum number of results returned in a single call.

Default Value: 100

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.

Default Value: null

\"\ }\ }\ },\ \"ListRouteCalculatorsRequestMaxResultsInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"max\":100,\ \"min\":1\ },\ \"ListRouteCalculatorsResponse\":{\ \"type\":\"structure\",\ \"required\":[\"Entries\"],\ \"members\":{\ \"Entries\":{\ \"shape\":\"ListRouteCalculatorsResponseEntryList\",\ \"documentation\":\"

Lists the route calculator resources that exist in your Amazon Web Services account

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

A pagination token indicating there are additional pages available. You can use the token in a subsequent request to fetch the next set of results.

\"\ }\ }\ },\ \"ListRouteCalculatorsResponseEntry\":{\ \"type\":\"structure\",\ \"required\":[\ \"CalculatorName\",\ \"CreateTime\",\ \"DataSource\",\ \"Description\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CalculatorName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the route calculator resource.

\"\ },\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp when the route calculator resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"DataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

The data provider of traffic and road network data. Indicates one of the available providers:

For more information about data providers, see Amazon Location Service data providers.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The optional description of the route calculator resource.

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

Always returns RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Always returns RequestBasedUsage.\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp when the route calculator resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ },\ \"documentation\":\"

A route calculator resource listed in your Amazon Web Services account.

\"\ },\ \"ListRouteCalculatorsResponseEntryList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"ListRouteCalculatorsResponseEntry\"}\ },\ \"ListTagsForResourceRequest\":{\ \"type\":\"structure\",\ \"required\":[\"ResourceArn\"],\ \"members\":{\ \"ResourceArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) of the resource whose tags you want to retrieve.

\",\ \"location\":\"uri\",\ \"locationName\":\"ResourceArn\"\ }\ }\ },\ \"ListTagsForResourceResponse\":{\ \"type\":\"structure\",\ \"members\":{\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

Tags that have been applied to the specified resource. Tags are mapped from the tag key to the tag value: \\\"TagKey\\\" : \\\"TagValue\\\".

\"\ }\ }\ },\ \"ListTrackerConsumersRequest\":{\ \"type\":\"structure\",\ \"required\":[\"TrackerName\"],\ \"members\":{\ \"MaxResults\":{\ \"shape\":\"ListTrackerConsumersRequestMaxResultsInteger\",\ \"documentation\":\"

An optional limit for the number of resources returned in a single call.

Default value: 100

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.

Default value: null

\"\ },\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The tracker resource whose associated geofence collections you want to list.

\",\ \"location\":\"uri\",\ \"locationName\":\"TrackerName\"\ }\ }\ },\ \"ListTrackerConsumersRequestMaxResultsInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"max\":100,\ \"min\":1\ },\ \"ListTrackerConsumersResponse\":{\ \"type\":\"structure\",\ \"required\":[\"ConsumerArns\"],\ \"members\":{\ \"ConsumerArns\":{\ \"shape\":\"ArnList\",\ \"documentation\":\"

Contains the list of geofence collection ARNs associated to the tracker resource.

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

A pagination token indicating there are additional pages available. You can use the token in a following request to fetch the next set of results.

\"\ }\ }\ },\ \"ListTrackersRequest\":{\ \"type\":\"structure\",\ \"members\":{\ \"MaxResults\":{\ \"shape\":\"ListTrackersRequestMaxResultsInteger\",\ \"documentation\":\"

An optional limit for the number of resources returned in a single call.

Default value: 100

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.

Default value: null

\"\ }\ }\ },\ \"ListTrackersRequestMaxResultsInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"max\":100,\ \"min\":1\ },\ \"ListTrackersResponse\":{\ \"type\":\"structure\",\ \"required\":[\"Entries\"],\ \"members\":{\ \"Entries\":{\ \"shape\":\"ListTrackersResponseEntryList\",\ \"documentation\":\"

Contains tracker resources in your Amazon Web Services account. Details include tracker name, description and timestamps for when the tracker was created and last updated.

\"\ },\ \"NextToken\":{\ \"shape\":\"Token\",\ \"documentation\":\"

A pagination token indicating there are additional pages available. You can use the token in a following request to fetch the next set of results.

\"\ }\ }\ },\ \"ListTrackersResponseEntry\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"Description\",\ \"TrackerName\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the tracker resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

The description for the tracker resource.

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

Always returns RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Always returns RequestBasedUsage.\"\ },\ \"PricingPlanDataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

No longer used. Always returns an empty string.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. Unused.\"\ },\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the tracker resource.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp at which the device's position was determined. Uses ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ },\ \"documentation\":\"

Contains the tracker resource details.

\"\ },\ \"ListTrackersResponseEntryList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"ListTrackersResponseEntry\"}\ },\ \"MapConfiguration\":{\ \"type\":\"structure\",\ \"required\":[\"Style\"],\ \"members\":{\ \"PoliticalView\":{\ \"shape\":\"CountryCode3\",\ \"documentation\":\"

Specifies the political view for the style. Leave unset to not use a political view, or, for styles that support specific political views, you can choose a view, such as IND for the Indian view.

Default is unset.

Not all map resources or styles support political view styles. See Political views for more information.

\"\ },\ \"Style\":{\ \"shape\":\"MapStyle\",\ \"documentation\":\"

Specifies the map style selected from an available data provider.

Valid Esri map styles:

Valid HERE Technologies map styles:

Valid GrabMaps map styles:

Grab provides maps only for countries in Southeast Asia, and is only available in the Asia Pacific (Singapore) Region (ap-southeast-1). For more information, see GrabMaps countries and area covered.

Valid Open Data map styles:

\"\ }\ },\ \"documentation\":\"

Specifies the map tile style selected from an available provider.

\"\ },\ \"MapConfigurationUpdate\":{\ \"type\":\"structure\",\ \"members\":{\ \"PoliticalView\":{\ \"shape\":\"CountryCode3OrEmpty\",\ \"documentation\":\"

Specifies the political view for the style. Set to an empty string to not use a political view, or, for styles that support specific political views, you can choose a view, such as IND for the Indian view.

Not all map resources or styles support political view styles. See Political views for more information.

\"\ }\ },\ \"documentation\":\"

Specifies the political view for the style.

\"\ },\ \"MapStyle\":{\ \"type\":\"string\",\ \"max\":100,\ \"min\":1,\ \"pattern\":\"^[-._\\\\w]+$\"\ },\ \"Place\":{\ \"type\":\"structure\",\ \"required\":[\"Geometry\"],\ \"members\":{\ \"AddressNumber\":{\ \"shape\":\"String\",\ \"documentation\":\"

The numerical portion of an address, such as a building number.

\"\ },\ \"Categories\":{\ \"shape\":\"PlaceCategoryList\",\ \"documentation\":\"

The Amazon Location categories that describe this Place.

For more information about using categories, including a list of Amazon Location categories, see Categories and filtering, in the Amazon Location Service Developer Guide.

\"\ },\ \"Country\":{\ \"shape\":\"String\",\ \"documentation\":\"

A country/region specified using ISO 3166 3-digit country/region code. For example, CAN.

\"\ },\ \"Geometry\":{\"shape\":\"PlaceGeometry\"},\ \"Interpolated\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

True if the result is interpolated from other known places.

False if the Place is a known place.

Not returned when the partner does not provide the information.

For example, returns False for an address location that is found in the partner data, but returns True if an address does not exist in the partner data and its location is calculated by interpolating between other known addresses.

\"\ },\ \"Label\":{\ \"shape\":\"String\",\ \"documentation\":\"

The full name and address of the point of interest such as a city, region, or country. For example, 123 Any Street, Any Town, USA.

\"\ },\ \"Municipality\":{\ \"shape\":\"String\",\ \"documentation\":\"

A name for a local area, such as a city or town name. For example, Toronto.

\"\ },\ \"Neighborhood\":{\ \"shape\":\"String\",\ \"documentation\":\"

The name of a community district. For example, Downtown.

\"\ },\ \"PostalCode\":{\ \"shape\":\"String\",\ \"documentation\":\"

A group of numbers and letters in a country-specific format, which accompanies the address for the purpose of identifying a location.

\"\ },\ \"Region\":{\ \"shape\":\"String\",\ \"documentation\":\"

A name for an area or geographical division, such as a province or state name. For example, British Columbia.

\"\ },\ \"Street\":{\ \"shape\":\"String\",\ \"documentation\":\"

The name for a street or a road to identify a location. For example, Main Street.

\"\ },\ \"SubRegion\":{\ \"shape\":\"String\",\ \"documentation\":\"

A county, or an area that's part of a larger region. For example, Metro Vancouver.

\"\ },\ \"SupplementalCategories\":{\ \"shape\":\"PlaceSupplementalCategoryList\",\ \"documentation\":\"

Categories from the data provider that describe the Place that are not mapped to any Amazon Location categories.

\"\ },\ \"TimeZone\":{\ \"shape\":\"TimeZone\",\ \"documentation\":\"

The time zone in which the Place is located. Returned only when using HERE or Grab as the selected partner.

\"\ },\ \"UnitNumber\":{\ \"shape\":\"String\",\ \"documentation\":\"

For addresses with multiple units, the unit identifier. Can include numbers and letters, for example 3B or Unit 123.

Returned only for a place index that uses Esri or Grab as a data provider. Is not returned for SearchPlaceIndexForPosition.

\"\ },\ \"UnitType\":{\ \"shape\":\"String\",\ \"documentation\":\"

For addresses with a UnitNumber, the type of unit. For example, Apartment.

Returned only for a place index that uses Esri as a data provider.

\"\ }\ },\ \"documentation\":\"

Contains details about addresses or points of interest that match the search criteria.

Not all details are included with all responses. Some details may only be returned by specific data partners.

\"\ },\ \"PlaceCategory\":{\ \"type\":\"string\",\ \"max\":35,\ \"min\":0\ },\ \"PlaceCategoryList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"PlaceCategory\"},\ \"max\":10,\ \"min\":1\ },\ \"PlaceGeometry\":{\ \"type\":\"structure\",\ \"members\":{\ \"Point\":{\ \"shape\":\"Position\",\ \"documentation\":\"

A single point geometry specifies a location for a Place using WGS 84 coordinates:

\"\ }\ },\ \"documentation\":\"

Places uses a point geometry to specify a location or a Place.

\"\ },\ \"PlaceId\":{\"type\":\"string\"},\ \"PlaceIndexSearchResultLimit\":{\ \"type\":\"integer\",\ \"max\":50,\ \"min\":1\ },\ \"PlaceSupplementalCategory\":{\ \"type\":\"string\",\ \"max\":35,\ \"min\":0\ },\ \"PlaceSupplementalCategoryList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"PlaceSupplementalCategory\"},\ \"max\":10,\ \"min\":1\ },\ \"Position\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Double\"},\ \"max\":2,\ \"min\":2,\ \"sensitive\":true\ },\ \"PositionFiltering\":{\ \"type\":\"string\",\ \"enum\":[\ \"TimeBased\",\ \"DistanceBased\",\ \"AccuracyBased\"\ ]\ },\ \"PositionalAccuracy\":{\ \"type\":\"structure\",\ \"required\":[\"Horizontal\"],\ \"members\":{\ \"Horizontal\":{\ \"shape\":\"PositionalAccuracyHorizontalDouble\",\ \"documentation\":\"

Estimated maximum distance, in meters, between the measured position and the true position of a device, along the Earth's surface.

\"\ }\ },\ \"documentation\":\"

Defines the level of certainty of the position.

\"\ },\ \"PositionalAccuracyHorizontalDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"max\":10000,\ \"min\":0\ },\ \"PricingPlan\":{\ \"type\":\"string\",\ \"enum\":[\ \"RequestBasedUsage\",\ \"MobileAssetTracking\",\ \"MobileAssetManagement\"\ ]\ },\ \"PropertyMap\":{\ \"type\":\"map\",\ \"key\":{\"shape\":\"PropertyMapKeyString\"},\ \"value\":{\"shape\":\"PropertyMapValueString\"},\ \"max\":3,\ \"min\":0,\ \"sensitive\":true\ },\ \"PropertyMapKeyString\":{\ \"type\":\"string\",\ \"max\":20,\ \"min\":1\ },\ \"PropertyMapValueString\":{\ \"type\":\"string\",\ \"max\":40,\ \"min\":1\ },\ \"PutGeofenceRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"CollectionName\",\ \"GeofenceId\",\ \"Geometry\"\ ],\ \"members\":{\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The geofence collection to store the geofence in.

\",\ \"location\":\"uri\",\ \"locationName\":\"CollectionName\"\ },\ \"GeofenceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

An identifier for the geofence. For example, ExampleGeofence-1.

\",\ \"location\":\"uri\",\ \"locationName\":\"GeofenceId\"\ },\ \"GeofenceProperties\":{\ \"shape\":\"PropertyMap\",\ \"documentation\":\"

Associates one of more properties with the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence.

Format: \\\"key\\\" : \\\"value\\\"

\"\ },\ \"Geometry\":{\ \"shape\":\"GeofenceGeometry\",\ \"documentation\":\"

Contains the details to specify the position of the geofence. Can be either a polygon or a circle. Including both will return a validation error.

Each geofence polygon can have a maximum of 1,000 vertices.

\"\ }\ }\ },\ \"PutGeofenceResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CreateTime\",\ \"GeofenceId\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CreateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the geofence was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ },\ \"GeofenceId\":{\ \"shape\":\"Id\",\ \"documentation\":\"

The geofence identifier entered in the request.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the geofence was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ }\ }\ },\ \"RefererPattern\":{\ \"type\":\"string\",\ \"max\":253,\ \"min\":0,\ \"pattern\":\"^([$\\\\-._+!*\\\\x{60}(),;/?:@=&\\\\w]|%([0-9a-fA-F?]{2}|[0-9a-fA-F?]?[*]))+$\"\ },\ \"ResourceDescription\":{\ \"type\":\"string\",\ \"max\":1000,\ \"min\":0\ },\ \"ResourceName\":{\ \"type\":\"string\",\ \"max\":100,\ \"min\":1,\ \"pattern\":\"^[-._\\\\w]+$\"\ },\ \"ResourceNotFoundException\":{\ \"type\":\"structure\",\ \"required\":[\"Message\"],\ \"members\":{\ \"Message\":{\ \"shape\":\"String\",\ \"locationName\":\"message\"\ }\ },\ \"documentation\":\"

The resource that you've entered was not found in your AWS account.

\",\ \"error\":{\ \"httpStatusCode\":404,\ \"senderFault\":true\ },\ \"exception\":true\ },\ \"RouteMatrix\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"RouteMatrixRow\"}\ },\ \"RouteMatrixEntry\":{\ \"type\":\"structure\",\ \"members\":{\ \"Distance\":{\ \"shape\":\"RouteMatrixEntryDistanceDouble\",\ \"documentation\":\"

The total distance of travel for the route.

\"\ },\ \"DurationSeconds\":{\ \"shape\":\"RouteMatrixEntryDurationSecondsDouble\",\ \"documentation\":\"

The expected duration of travel for the route.

\"\ },\ \"Error\":{\ \"shape\":\"RouteMatrixEntryError\",\ \"documentation\":\"

An error corresponding to the calculation of a route between the DeparturePosition and DestinationPosition.

\"\ }\ },\ \"documentation\":\"

The result for the calculated route of one DeparturePosition DestinationPosition pair.

\"\ },\ \"RouteMatrixEntryDistanceDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"RouteMatrixEntryDurationSecondsDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"RouteMatrixEntryError\":{\ \"type\":\"structure\",\ \"required\":[\"Code\"],\ \"members\":{\ \"Code\":{\ \"shape\":\"RouteMatrixErrorCode\",\ \"documentation\":\"

The type of error which occurred for the route calculation.

\"\ },\ \"Message\":{\ \"shape\":\"String\",\ \"documentation\":\"

A message about the error that occurred for the route calculation.

\"\ }\ },\ \"documentation\":\"

An error corresponding to the calculation of a route between the DeparturePosition and DestinationPosition.

The error code can be one of the following:

\"\ },\ \"RouteMatrixErrorCode\":{\ \"type\":\"string\",\ \"enum\":[\ \"RouteNotFound\",\ \"RouteTooLong\",\ \"PositionsNotFound\",\ \"DestinationPositionNotFound\",\ \"DeparturePositionNotFound\",\ \"OtherValidationError\"\ ]\ },\ \"RouteMatrixRow\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"RouteMatrixEntry\"}\ },\ \"SearchForPositionResult\":{\ \"type\":\"structure\",\ \"required\":[\ \"Distance\",\ \"Place\"\ ],\ \"members\":{\ \"Distance\":{\ \"shape\":\"SearchForPositionResultDistanceDouble\",\ \"documentation\":\"

The distance in meters of a great-circle arc between the query position and the result.

A great-circle arc is the shortest path on a sphere, in this case the Earth. This returns the shortest distance between two locations.

\"\ },\ \"Place\":{\ \"shape\":\"Place\",\ \"documentation\":\"

Details about the search result, such as its address and position.

\"\ },\ \"PlaceId\":{\ \"shape\":\"PlaceId\",\ \"documentation\":\"

The unique identifier of the place. You can use this with the GetPlace operation to find the place again later.

For SearchPlaceIndexForPosition operations, the PlaceId is returned only by place indexes that use HERE or Grab as a data provider.

\"\ }\ },\ \"documentation\":\"

Contains a search result from a position search query that is run on a place index resource.

\"\ },\ \"SearchForPositionResultDistanceDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"SearchForPositionResultList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"SearchForPositionResult\"}\ },\ \"SearchForSuggestionsResult\":{\ \"type\":\"structure\",\ \"required\":[\"Text\"],\ \"members\":{\ \"Categories\":{\ \"shape\":\"PlaceCategoryList\",\ \"documentation\":\"

The Amazon Location categories that describe the Place.

For more information about using categories, including a list of Amazon Location categories, see Categories and filtering, in the Amazon Location Service Developer Guide.

\"\ },\ \"PlaceId\":{\ \"shape\":\"PlaceId\",\ \"documentation\":\"

The unique identifier of the Place. You can use this with the GetPlace operation to find the place again later, or to get full information for the Place.

The GetPlace request must use the same PlaceIndex resource as the SearchPlaceIndexForSuggestions that generated the Place ID.

For SearchPlaceIndexForSuggestions operations, the PlaceId is returned by place indexes that use Esri, Grab, or HERE as data providers.

\"\ },\ \"SupplementalCategories\":{\ \"shape\":\"PlaceSupplementalCategoryList\",\ \"documentation\":\"

Categories from the data provider that describe the Place that are not mapped to any Amazon Location categories.

\"\ },\ \"Text\":{\ \"shape\":\"String\",\ \"documentation\":\"

The text of the place suggestion, typically formatted as an address string.

\"\ }\ },\ \"documentation\":\"

Contains a place suggestion resulting from a place suggestion query that is run on a place index resource.

\"\ },\ \"SearchForSuggestionsResultList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"SearchForSuggestionsResult\"}\ },\ \"SearchForTextResult\":{\ \"type\":\"structure\",\ \"required\":[\"Place\"],\ \"members\":{\ \"Distance\":{\ \"shape\":\"SearchForTextResultDistanceDouble\",\ \"documentation\":\"

The distance in meters of a great-circle arc between the bias position specified and the result. Distance will be returned only if a bias position was specified in the query.

A great-circle arc is the shortest path on a sphere, in this case the Earth. This returns the shortest distance between two locations.

\"\ },\ \"Place\":{\ \"shape\":\"Place\",\ \"documentation\":\"

Details about the search result, such as its address and position.

\"\ },\ \"PlaceId\":{\ \"shape\":\"PlaceId\",\ \"documentation\":\"

The unique identifier of the place. You can use this with the GetPlace operation to find the place again later.

For SearchPlaceIndexForText operations, the PlaceId is returned only by place indexes that use HERE or Grab as a data provider.

\"\ },\ \"Relevance\":{\ \"shape\":\"SearchForTextResultRelevanceDouble\",\ \"documentation\":\"

The relative confidence in the match for a result among the results returned. For example, if more fields for an address match (including house number, street, city, country/region, and postal code), the relevance score is closer to 1.

Returned only when the partner selected is Esri or Grab.

\"\ }\ },\ \"documentation\":\"

Contains a search result from a text search query that is run on a place index resource.

\"\ },\ \"SearchForTextResultDistanceDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"SearchForTextResultList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"SearchForTextResult\"}\ },\ \"SearchForTextResultRelevanceDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"max\":1,\ \"min\":0\ },\ \"SearchPlaceIndexForPositionRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"IndexName\",\ \"Position\"\ ],\ \"members\":{\ \"IndexName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the place index resource you want to use for the search.

\",\ \"location\":\"uri\",\ \"locationName\":\"IndexName\"\ },\ \"Key\":{\ \"shape\":\"ApiKey\",\ \"documentation\":\"

The optional API key to authorize the request.

\",\ \"location\":\"querystring\",\ \"locationName\":\"key\"\ },\ \"Language\":{\ \"shape\":\"LanguageTag\",\ \"documentation\":\"

The preferred language used to return results. The value must be a valid BCP 47 language tag, for example, en for English.

This setting affects the languages used in the results, but not the results themselves. If no language is specified, or not supported for a particular result, the partner automatically chooses a language for the result.

For an example, we'll use the Greek language. You search for a location around Athens, Greece, with the language parameter set to en. The city in the results will most likely be returned as Athens.

If you set the language parameter to el, for Greek, then the city in the results will more likely be returned as Αθήνα.

If the data provider does not have a value for Greek, the result will be in a language that the provider does support.

\"\ },\ \"MaxResults\":{\ \"shape\":\"PlaceIndexSearchResultLimit\",\ \"documentation\":\"

An optional parameter. The maximum number of results returned per request.

Default value: 50

\"\ },\ \"Position\":{\ \"shape\":\"Position\",\ \"documentation\":\"

Specifies the longitude and latitude of the position to query.

This parameter must contain a pair of numbers. The first number represents the X coordinate, or longitude; the second number represents the Y coordinate, or latitude.

For example, [-123.1174, 49.2847] represents a position with longitude -123.1174 and latitude 49.2847.

\"\ }\ }\ },\ \"SearchPlaceIndexForPositionResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"Results\",\ \"Summary\"\ ],\ \"members\":{\ \"Results\":{\ \"shape\":\"SearchForPositionResultList\",\ \"documentation\":\"

Returns a list of Places closest to the specified position. Each result contains additional information about the Places returned.

\"\ },\ \"Summary\":{\ \"shape\":\"SearchPlaceIndexForPositionSummary\",\ \"documentation\":\"

Contains a summary of the request. Echoes the input values for Position, Language, MaxResults, and the DataSource of the place index.

\"\ }\ }\ },\ \"SearchPlaceIndexForPositionSummary\":{\ \"type\":\"structure\",\ \"required\":[\ \"DataSource\",\ \"Position\"\ ],\ \"members\":{\ \"DataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:

For more information about data providers, see Amazon Location Service data providers.

\"\ },\ \"Language\":{\ \"shape\":\"LanguageTag\",\ \"documentation\":\"

The preferred language used to return results. Matches the language in the request. The value is a valid BCP 47 language tag, for example, en for English.

\"\ },\ \"MaxResults\":{\ \"shape\":\"PlaceIndexSearchResultLimit\",\ \"documentation\":\"

Contains the optional result count limit that is specified in the request.

Default value: 50

\"\ },\ \"Position\":{\ \"shape\":\"Position\",\ \"documentation\":\"

The position specified in the request.

\"\ }\ },\ \"documentation\":\"

A summary of the request sent by using SearchPlaceIndexForPosition.

\"\ },\ \"SearchPlaceIndexForSuggestionsRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"IndexName\",\ \"Text\"\ ],\ \"members\":{\ \"BiasPosition\":{\ \"shape\":\"Position\",\ \"documentation\":\"

An optional parameter that indicates a preference for place suggestions that are closer to a specified position.

If provided, this parameter must contain a pair of numbers. The first number represents the X coordinate, or longitude; the second number represents the Y coordinate, or latitude.

For example, [-123.1174, 49.2847] represents the position with longitude -123.1174 and latitude 49.2847.

BiasPosition and FilterBBox are mutually exclusive. Specifying both options results in an error.

\"\ },\ \"FilterBBox\":{\ \"shape\":\"BoundingBox\",\ \"documentation\":\"

An optional parameter that limits the search results by returning only suggestions within a specified bounding box.

If provided, this parameter must contain a total of four consecutive numbers in two pairs. The first pair of numbers represents the X and Y coordinates (longitude and latitude, respectively) of the southwest corner of the bounding box; the second pair of numbers represents the X and Y coordinates (longitude and latitude, respectively) of the northeast corner of the bounding box.

For example, [-12.7935, -37.4835, -12.0684, -36.9542] represents a bounding box where the southwest corner has longitude -12.7935 and latitude -37.4835, and the northeast corner has longitude -12.0684 and latitude -36.9542.

FilterBBox and BiasPosition are mutually exclusive. Specifying both options results in an error.

\"\ },\ \"FilterCategories\":{\ \"shape\":\"FilterPlaceCategoryList\",\ \"documentation\":\"

A list of one or more Amazon Location categories to filter the returned places. If you include more than one category, the results will include results that match any of the categories listed.

For more information about using categories, including a list of Amazon Location categories, see Categories and filtering, in the Amazon Location Service Developer Guide.

\"\ },\ \"FilterCountries\":{\ \"shape\":\"CountryCodeList\",\ \"documentation\":\"

An optional parameter that limits the search results by returning only suggestions within the provided list of countries.

\"\ },\ \"IndexName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the place index resource you want to use for the search.

\",\ \"location\":\"uri\",\ \"locationName\":\"IndexName\"\ },\ \"Key\":{\ \"shape\":\"ApiKey\",\ \"documentation\":\"

The optional API key to authorize the request.

\",\ \"location\":\"querystring\",\ \"locationName\":\"key\"\ },\ \"Language\":{\ \"shape\":\"LanguageTag\",\ \"documentation\":\"

The preferred language used to return results. The value must be a valid BCP 47 language tag, for example, en for English.

This setting affects the languages used in the results. If no language is specified, or not supported for a particular result, the partner automatically chooses a language for the result.

For an example, we'll use the Greek language. You search for Athens, Gr to get suggestions with the language parameter set to en. The results found will most likely be returned as Athens, Greece.

If you set the language parameter to el, for Greek, then the result found will more likely be returned as Αθήνα, Ελλάδα.

If the data provider does not have a value for Greek, the result will be in a language that the provider does support.

\"\ },\ \"MaxResults\":{\ \"shape\":\"SearchPlaceIndexForSuggestionsRequestMaxResultsInteger\",\ \"documentation\":\"

An optional parameter. The maximum number of results returned per request.

The default: 5

\"\ },\ \"Text\":{\ \"shape\":\"SearchPlaceIndexForSuggestionsRequestTextString\",\ \"documentation\":\"

The free-form partial text to use to generate place suggestions. For example, eiffel tow.

\"\ }\ }\ },\ \"SearchPlaceIndexForSuggestionsRequestMaxResultsInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"max\":15,\ \"min\":1\ },\ \"SearchPlaceIndexForSuggestionsRequestTextString\":{\ \"type\":\"string\",\ \"max\":200,\ \"min\":1,\ \"sensitive\":true\ },\ \"SearchPlaceIndexForSuggestionsResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"Results\",\ \"Summary\"\ ],\ \"members\":{\ \"Results\":{\ \"shape\":\"SearchForSuggestionsResultList\",\ \"documentation\":\"

A list of place suggestions that best match the search text.

\"\ },\ \"Summary\":{\ \"shape\":\"SearchPlaceIndexForSuggestionsSummary\",\ \"documentation\":\"

Contains a summary of the request. Echoes the input values for BiasPosition, FilterBBox, FilterCountries, Language, MaxResults, and Text. Also includes the DataSource of the place index.

\"\ }\ }\ },\ \"SearchPlaceIndexForSuggestionsSummary\":{\ \"type\":\"structure\",\ \"required\":[\ \"DataSource\",\ \"Text\"\ ],\ \"members\":{\ \"BiasPosition\":{\ \"shape\":\"Position\",\ \"documentation\":\"

Contains the coordinates for the optional bias position specified in the request.

This parameter contains a pair of numbers. The first number represents the X coordinate, or longitude; the second number represents the Y coordinate, or latitude.

For example, [-123.1174, 49.2847] represents the position with longitude -123.1174 and latitude 49.2847.

\"\ },\ \"DataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:

For more information about data providers, see Amazon Location Service data providers.

\"\ },\ \"FilterBBox\":{\ \"shape\":\"BoundingBox\",\ \"documentation\":\"

Contains the coordinates for the optional bounding box specified in the request.

\"\ },\ \"FilterCategories\":{\ \"shape\":\"FilterPlaceCategoryList\",\ \"documentation\":\"

The optional category filter specified in the request.

\"\ },\ \"FilterCountries\":{\ \"shape\":\"CountryCodeList\",\ \"documentation\":\"

Contains the optional country filter specified in the request.

\"\ },\ \"Language\":{\ \"shape\":\"LanguageTag\",\ \"documentation\":\"

The preferred language used to return results. Matches the language in the request. The value is a valid BCP 47 language tag, for example, en for English.

\"\ },\ \"MaxResults\":{\ \"shape\":\"Integer\",\ \"documentation\":\"

Contains the optional result count limit specified in the request.

\"\ },\ \"Text\":{\ \"shape\":\"SensitiveString\",\ \"documentation\":\"

The free-form partial text input specified in the request.

\"\ }\ },\ \"documentation\":\"

A summary of the request sent by using SearchPlaceIndexForSuggestions.

\"\ },\ \"SearchPlaceIndexForTextRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"IndexName\",\ \"Text\"\ ],\ \"members\":{\ \"BiasPosition\":{\ \"shape\":\"Position\",\ \"documentation\":\"

An optional parameter that indicates a preference for places that are closer to a specified position.

If provided, this parameter must contain a pair of numbers. The first number represents the X coordinate, or longitude; the second number represents the Y coordinate, or latitude.

For example, [-123.1174, 49.2847] represents the position with longitude -123.1174 and latitude 49.2847.

BiasPosition and FilterBBox are mutually exclusive. Specifying both options results in an error.

\"\ },\ \"FilterBBox\":{\ \"shape\":\"BoundingBox\",\ \"documentation\":\"

An optional parameter that limits the search results by returning only places that are within the provided bounding box.

If provided, this parameter must contain a total of four consecutive numbers in two pairs. The first pair of numbers represents the X and Y coordinates (longitude and latitude, respectively) of the southwest corner of the bounding box; the second pair of numbers represents the X and Y coordinates (longitude and latitude, respectively) of the northeast corner of the bounding box.

For example, [-12.7935, -37.4835, -12.0684, -36.9542] represents a bounding box where the southwest corner has longitude -12.7935 and latitude -37.4835, and the northeast corner has longitude -12.0684 and latitude -36.9542.

FilterBBox and BiasPosition are mutually exclusive. Specifying both options results in an error.

\"\ },\ \"FilterCategories\":{\ \"shape\":\"FilterPlaceCategoryList\",\ \"documentation\":\"

A list of one or more Amazon Location categories to filter the returned places. If you include more than one category, the results will include results that match any of the categories listed.

For more information about using categories, including a list of Amazon Location categories, see Categories and filtering, in the Amazon Location Service Developer Guide.

\"\ },\ \"FilterCountries\":{\ \"shape\":\"CountryCodeList\",\ \"documentation\":\"

An optional parameter that limits the search results by returning only places that are in a specified list of countries.

\"\ },\ \"IndexName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the place index resource you want to use for the search.

\",\ \"location\":\"uri\",\ \"locationName\":\"IndexName\"\ },\ \"Key\":{\ \"shape\":\"ApiKey\",\ \"documentation\":\"

The optional API key to authorize the request.

\",\ \"location\":\"querystring\",\ \"locationName\":\"key\"\ },\ \"Language\":{\ \"shape\":\"LanguageTag\",\ \"documentation\":\"

The preferred language used to return results. The value must be a valid BCP 47 language tag, for example, en for English.

This setting affects the languages used in the results, but not the results themselves. If no language is specified, or not supported for a particular result, the partner automatically chooses a language for the result.

For an example, we'll use the Greek language. You search for Athens, Greece, with the language parameter set to en. The result found will most likely be returned as Athens.

If you set the language parameter to el, for Greek, then the result found will more likely be returned as Αθήνα.

If the data provider does not have a value for Greek, the result will be in a language that the provider does support.

\"\ },\ \"MaxResults\":{\ \"shape\":\"PlaceIndexSearchResultLimit\",\ \"documentation\":\"

An optional parameter. The maximum number of results returned per request.

The default: 50

\"\ },\ \"Text\":{\ \"shape\":\"SearchPlaceIndexForTextRequestTextString\",\ \"documentation\":\"

The address, name, city, or region to be used in the search in free-form text format. For example, 123 Any Street.

\"\ }\ }\ },\ \"SearchPlaceIndexForTextRequestTextString\":{\ \"type\":\"string\",\ \"max\":200,\ \"min\":1,\ \"sensitive\":true\ },\ \"SearchPlaceIndexForTextResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"Results\",\ \"Summary\"\ ],\ \"members\":{\ \"Results\":{\ \"shape\":\"SearchForTextResultList\",\ \"documentation\":\"

A list of Places matching the input text. Each result contains additional information about the specific point of interest.

Not all response properties are included with all responses. Some properties may only be returned by specific data partners.

\"\ },\ \"Summary\":{\ \"shape\":\"SearchPlaceIndexForTextSummary\",\ \"documentation\":\"

Contains a summary of the request. Echoes the input values for BiasPosition, FilterBBox, FilterCountries, Language, MaxResults, and Text. Also includes the DataSource of the place index and the bounding box, ResultBBox, which surrounds the search results.

\"\ }\ }\ },\ \"SearchPlaceIndexForTextSummary\":{\ \"type\":\"structure\",\ \"required\":[\ \"DataSource\",\ \"Text\"\ ],\ \"members\":{\ \"BiasPosition\":{\ \"shape\":\"Position\",\ \"documentation\":\"

Contains the coordinates for the optional bias position specified in the request.

This parameter contains a pair of numbers. The first number represents the X coordinate, or longitude; the second number represents the Y coordinate, or latitude.

For example, [-123.1174, 49.2847] represents the position with longitude -123.1174 and latitude 49.2847.

\"\ },\ \"DataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

The geospatial data provider attached to the place index resource specified in the request. Values can be one of the following:

For more information about data providers, see Amazon Location Service data providers.

\"\ },\ \"FilterBBox\":{\ \"shape\":\"BoundingBox\",\ \"documentation\":\"

Contains the coordinates for the optional bounding box specified in the request.

\"\ },\ \"FilterCategories\":{\ \"shape\":\"FilterPlaceCategoryList\",\ \"documentation\":\"

The optional category filter specified in the request.

\"\ },\ \"FilterCountries\":{\ \"shape\":\"CountryCodeList\",\ \"documentation\":\"

Contains the optional country filter specified in the request.

\"\ },\ \"Language\":{\ \"shape\":\"LanguageTag\",\ \"documentation\":\"

The preferred language used to return results. Matches the language in the request. The value is a valid BCP 47 language tag, for example, en for English.

\"\ },\ \"MaxResults\":{\ \"shape\":\"PlaceIndexSearchResultLimit\",\ \"documentation\":\"

Contains the optional result count limit specified in the request.

\"\ },\ \"ResultBBox\":{\ \"shape\":\"BoundingBox\",\ \"documentation\":\"

The bounding box that fully contains all search results.

If you specified the optional FilterBBox parameter in the request, ResultBBox is contained within FilterBBox.

\"\ },\ \"Text\":{\ \"shape\":\"SensitiveString\",\ \"documentation\":\"

The search text specified in the request.

\"\ }\ },\ \"documentation\":\"

A summary of the request sent by using SearchPlaceIndexForText.

\"\ },\ \"SensitiveString\":{\ \"type\":\"string\",\ \"sensitive\":true\ },\ \"ServiceQuotaExceededException\":{\ \"type\":\"structure\",\ \"required\":[\"Message\"],\ \"members\":{\ \"Message\":{\ \"shape\":\"String\",\ \"documentation\":\"

A message with the reason for the service quota exceeded exception error.

\",\ \"locationName\":\"message\"\ }\ },\ \"documentation\":\"

The operation was denied because the request would exceed the maximum quota set for Amazon Location Service.

\",\ \"error\":{\ \"httpStatusCode\":402,\ \"senderFault\":true\ },\ \"exception\":true\ },\ \"Status\":{\ \"type\":\"string\",\ \"enum\":[\ \"Active\",\ \"Expired\"\ ]\ },\ \"Step\":{\ \"type\":\"structure\",\ \"required\":[\ \"Distance\",\ \"DurationSeconds\",\ \"EndPosition\",\ \"StartPosition\"\ ],\ \"members\":{\ \"Distance\":{\ \"shape\":\"StepDistanceDouble\",\ \"documentation\":\"

The travel distance between the step's StartPosition and EndPosition.

\"\ },\ \"DurationSeconds\":{\ \"shape\":\"StepDurationSecondsDouble\",\ \"documentation\":\"

The estimated travel time, in seconds, from the step's StartPosition to the EndPosition. . The travel mode and departure time that you specify in the request determines the calculated time.

\"\ },\ \"EndPosition\":{\ \"shape\":\"Position\",\ \"documentation\":\"

The end position of a step. If the position the last step in the leg, this position is the same as the end position of the leg.

\"\ },\ \"GeometryOffset\":{\ \"shape\":\"StepGeometryOffsetInteger\",\ \"documentation\":\"

Represents the start position, or index, in a sequence of steps within the leg's line string geometry. For example, the index of the first step in a leg geometry is 0.

Included in the response for queries that set IncludeLegGeometry to True.

\"\ },\ \"StartPosition\":{\ \"shape\":\"Position\",\ \"documentation\":\"

The starting position of a step. If the position is the first step in the leg, this position is the same as the start position of the leg.

\"\ }\ },\ \"documentation\":\"

Represents an element of a leg within a route. A step contains instructions for how to move to the next step in the leg.

\"\ },\ \"StepDistanceDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"StepDurationSecondsDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"StepGeometryOffsetInteger\":{\ \"type\":\"integer\",\ \"box\":true,\ \"min\":0\ },\ \"StepList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"Step\"}\ },\ \"String\":{\"type\":\"string\"},\ \"TagKey\":{\ \"type\":\"string\",\ \"max\":128,\ \"min\":1,\ \"pattern\":\"^[a-zA-Z+-=._:/]+$\"\ },\ \"TagKeys\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"String\"},\ \"max\":50,\ \"min\":1\ },\ \"TagMap\":{\ \"type\":\"map\",\ \"key\":{\"shape\":\"TagKey\"},\ \"value\":{\"shape\":\"TagValue\"},\ \"max\":50,\ \"min\":0\ },\ \"TagResourceRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"ResourceArn\",\ \"Tags\"\ ],\ \"members\":{\ \"ResourceArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) of the resource whose tags you want to update.

\",\ \"location\":\"uri\",\ \"locationName\":\"ResourceArn\"\ },\ \"Tags\":{\ \"shape\":\"TagMap\",\ \"documentation\":\"

Applies one or more tags to specific resource. A tag is a key-value pair that helps you manage, identify, search, and filter your resources.

Format: \\\"key\\\" : \\\"value\\\"

Restrictions:

\"\ }\ }\ },\ \"TagResourceResponse\":{\ \"type\":\"structure\",\ \"members\":{\ }\ },\ \"TagValue\":{\ \"type\":\"string\",\ \"max\":256,\ \"min\":0,\ \"pattern\":\"^[A-Za-z0-9 _=@:.+-/]*$\"\ },\ \"ThrottlingException\":{\ \"type\":\"structure\",\ \"required\":[\"Message\"],\ \"members\":{\ \"Message\":{\ \"shape\":\"String\",\ \"locationName\":\"message\"\ }\ },\ \"documentation\":\"

The request was denied because of request throttling.

\",\ \"error\":{\ \"httpStatusCode\":429,\ \"senderFault\":true\ },\ \"exception\":true,\ \"retryable\":{\"throttling\":false}\ },\ \"TimeZone\":{\ \"type\":\"structure\",\ \"required\":[\"Name\"],\ \"members\":{\ \"Name\":{\ \"shape\":\"String\",\ \"documentation\":\"

The name of the time zone, following the IANA time zone standard. For example, America/Los_Angeles.

\"\ },\ \"Offset\":{\ \"shape\":\"Integer\",\ \"documentation\":\"

The time zone's offset, in seconds, from UTC.

\"\ }\ },\ \"documentation\":\"

Information about a time zone. Includes the name of the time zone and the offset from UTC in seconds.

\"\ },\ \"Timestamp\":{\ \"type\":\"timestamp\",\ \"timestampFormat\":\"iso8601\"\ },\ \"Token\":{\ \"type\":\"string\",\ \"max\":2000,\ \"min\":1\ },\ \"TravelMode\":{\ \"type\":\"string\",\ \"enum\":[\ \"Car\",\ \"Truck\",\ \"Walking\",\ \"Bicycle\",\ \"Motorcycle\"\ ]\ },\ \"TruckDimensions\":{\ \"type\":\"structure\",\ \"members\":{\ \"Height\":{\ \"shape\":\"TruckDimensionsHeightDouble\",\ \"documentation\":\"

The height of the truck.

For routes calculated with a HERE resource, this value must be between 0 and 50 meters.

\"\ },\ \"Length\":{\ \"shape\":\"TruckDimensionsLengthDouble\",\ \"documentation\":\"

The length of the truck.

For routes calculated with a HERE resource, this value must be between 0 and 300 meters.

\"\ },\ \"Unit\":{\ \"shape\":\"DimensionUnit\",\ \"documentation\":\"

Specifies the unit of measurement for the truck dimensions.

Default Value: Meters

\"\ },\ \"Width\":{\ \"shape\":\"TruckDimensionsWidthDouble\",\ \"documentation\":\"

The width of the truck.

For routes calculated with a HERE resource, this value must be between 0 and 50 meters.

\"\ }\ },\ \"documentation\":\"

Contains details about the truck dimensions in the unit of measurement that you specify. Used to filter out roads that can't support or allow the specified dimensions for requests that specify TravelMode as Truck.

\"\ },\ \"TruckDimensionsHeightDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"TruckDimensionsLengthDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"TruckDimensionsWidthDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"TruckWeight\":{\ \"type\":\"structure\",\ \"members\":{\ \"Total\":{\ \"shape\":\"TruckWeightTotalDouble\",\ \"documentation\":\"

The total weight of the truck.

\"\ },\ \"Unit\":{\ \"shape\":\"VehicleWeightUnit\",\ \"documentation\":\"

The unit of measurement to use for the truck weight.

Default Value: Kilograms

\"\ }\ },\ \"documentation\":\"

Contains details about the truck's weight specifications. Used to avoid roads that can't support or allow the total weight for requests that specify TravelMode as Truck.

\"\ },\ \"TruckWeightTotalDouble\":{\ \"type\":\"double\",\ \"box\":true,\ \"min\":0\ },\ \"UntagResourceRequest\":{\ \"type\":\"structure\",\ \"required\":[\ \"ResourceArn\",\ \"TagKeys\"\ ],\ \"members\":{\ \"ResourceArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) of the resource from which you want to remove tags.

\",\ \"location\":\"uri\",\ \"locationName\":\"ResourceArn\"\ },\ \"TagKeys\":{\ \"shape\":\"TagKeys\",\ \"documentation\":\"

The list of tag keys to remove from the specified resource.

\",\ \"location\":\"querystring\",\ \"locationName\":\"tagKeys\"\ }\ }\ },\ \"UntagResourceResponse\":{\ \"type\":\"structure\",\ \"members\":{\ }\ },\ \"UpdateGeofenceCollectionRequest\":{\ \"type\":\"structure\",\ \"required\":[\"CollectionName\"],\ \"members\":{\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the geofence collection to update.

\",\ \"location\":\"uri\",\ \"locationName\":\"CollectionName\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

Updates the description for the geofence collection.

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. If included, the only allowed value is RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. If included, the only allowed value is RequestBasedUsage.\"\ },\ \"PricingPlanDataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

This parameter is no longer used.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. No longer allowed.\"\ }\ }\ },\ \"UpdateGeofenceCollectionResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CollectionArn\",\ \"CollectionName\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CollectionArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) of the updated geofence collection. Used to specify a resource across Amazon Web Services.

\"\ },\ \"CollectionName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the updated geofence collection.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The time when the geofence collection was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ

\"\ }\ }\ },\ \"UpdateKeyRequest\":{\ \"type\":\"structure\",\ \"required\":[\"KeyName\"],\ \"members\":{\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

Updates the description for the API key resource.

\"\ },\ \"ExpireTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

Updates the timestamp for when the API key resource will expire in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ },\ \"ForceUpdate\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

The boolean flag to be included for updating ExpireTime or Restrictions details.

Must be set to true to update an API key resource that has been used in the past 7 days.

False if force update is not preferred

Default value: False

\"\ },\ \"KeyName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the API key resource to update.

\",\ \"location\":\"uri\",\ \"locationName\":\"KeyName\"\ },\ \"NoExpiry\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

Whether the API key should expire. Set to true to set the API key to have no expiration time.

\"\ },\ \"Restrictions\":{\ \"shape\":\"ApiKeyRestrictions\",\ \"documentation\":\"

Updates the API key restrictions for the API key resource.

\"\ }\ }\ },\ \"UpdateKeyResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"KeyArn\",\ \"KeyName\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"KeyArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) for the API key resource. Used when you need to specify a resource across all Amazon Web Services.

\"\ },\ \"KeyName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the API key resource.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the API key resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ }\ },\ \"UpdateMapRequest\":{\ \"type\":\"structure\",\ \"required\":[\"MapName\"],\ \"members\":{\ \"ConfigurationUpdate\":{\ \"shape\":\"MapConfigurationUpdate\",\ \"documentation\":\"

Updates the parts of the map configuration that can be updated, including the political view.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

Updates the description for the map resource.

\"\ },\ \"MapName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the map resource to update.

\",\ \"location\":\"uri\",\ \"locationName\":\"MapName\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. If included, the only allowed value is RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. If included, the only allowed value is RequestBasedUsage.\"\ }\ }\ },\ \"UpdateMapResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"MapArn\",\ \"MapName\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"MapArn\":{\ \"shape\":\"GeoArn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) of the updated map resource. Used to specify a resource across AWS.

\"\ },\ \"MapName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the updated map resource.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the map resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ }\ },\ \"UpdatePlaceIndexRequest\":{\ \"type\":\"structure\",\ \"required\":[\"IndexName\"],\ \"members\":{\ \"DataSourceConfiguration\":{\ \"shape\":\"DataSourceConfiguration\",\ \"documentation\":\"

Updates the data storage option for the place index resource.

\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

Updates the description for the place index resource.

\"\ },\ \"IndexName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the place index resource to update.

\",\ \"location\":\"uri\",\ \"locationName\":\"IndexName\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. If included, the only allowed value is RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. If included, the only allowed value is RequestBasedUsage.\"\ }\ }\ },\ \"UpdatePlaceIndexResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"IndexArn\",\ \"IndexName\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"IndexArn\":{\ \"shape\":\"GeoArn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) of the upated place index resource. Used to specify a resource across Amazon Web Services.

\"\ },\ \"IndexName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the updated place index resource.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the place index resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ }\ },\ \"UpdateRouteCalculatorRequest\":{\ \"type\":\"structure\",\ \"required\":[\"CalculatorName\"],\ \"members\":{\ \"CalculatorName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the route calculator resource to update.

\",\ \"location\":\"uri\",\ \"locationName\":\"CalculatorName\"\ },\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

Updates the description for the route calculator resource.

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. If included, the only allowed value is RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. If included, the only allowed value is RequestBasedUsage.\"\ }\ }\ },\ \"UpdateRouteCalculatorResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"CalculatorArn\",\ \"CalculatorName\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"CalculatorArn\":{\ \"shape\":\"GeoArn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) of the updated route calculator resource. Used to specify a resource across AWS.

\"\ },\ \"CalculatorName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the updated route calculator resource.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the route calculator was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ }\ },\ \"UpdateTrackerRequest\":{\ \"type\":\"structure\",\ \"required\":[\"TrackerName\"],\ \"members\":{\ \"Description\":{\ \"shape\":\"ResourceDescription\",\ \"documentation\":\"

Updates the description for the tracker resource.

\"\ },\ \"EventBridgeEnabled\":{\ \"shape\":\"Boolean\",\ \"documentation\":\"

Whether to enable position UPDATE events from this tracker to be sent to EventBridge.

You do not need enable this feature to get ENTER and EXIT events for geofences with this tracker. Those events are always sent to EventBridge.

\"\ },\ \"PositionFiltering\":{\ \"shape\":\"PositionFiltering\",\ \"documentation\":\"

Updates the position filtering for the tracker resource.

Valid values:

\"\ },\ \"PricingPlan\":{\ \"shape\":\"PricingPlan\",\ \"documentation\":\"

No longer used. If included, the only allowed value is RequestBasedUsage.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. If included, the only allowed value is RequestBasedUsage.\"\ },\ \"PricingPlanDataSource\":{\ \"shape\":\"String\",\ \"documentation\":\"

This parameter is no longer used.

\",\ \"deprecated\":true,\ \"deprecatedMessage\":\"Deprecated. No longer allowed.\"\ },\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the tracker resource to update.

\",\ \"location\":\"uri\",\ \"locationName\":\"TrackerName\"\ }\ }\ },\ \"UpdateTrackerResponse\":{\ \"type\":\"structure\",\ \"required\":[\ \"TrackerArn\",\ \"TrackerName\",\ \"UpdateTime\"\ ],\ \"members\":{\ \"TrackerArn\":{\ \"shape\":\"Arn\",\ \"documentation\":\"

The Amazon Resource Name (ARN) of the updated tracker resource. Used to specify a resource across AWS.

\"\ },\ \"TrackerName\":{\ \"shape\":\"ResourceName\",\ \"documentation\":\"

The name of the updated tracker resource.

\"\ },\ \"UpdateTime\":{\ \"shape\":\"Timestamp\",\ \"documentation\":\"

The timestamp for when the tracker resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.

\"\ }\ }\ },\ \"ValidationException\":{\ \"type\":\"structure\",\ \"required\":[\ \"FieldList\",\ \"Message\",\ \"Reason\"\ ],\ \"members\":{\ \"FieldList\":{\ \"shape\":\"ValidationExceptionFieldList\",\ \"documentation\":\"

The field where the invalid entry was detected.

\",\ \"locationName\":\"fieldList\"\ },\ \"Message\":{\ \"shape\":\"String\",\ \"locationName\":\"message\"\ },\ \"Reason\":{\ \"shape\":\"ValidationExceptionReason\",\ \"documentation\":\"

A message with the reason for the validation exception error.

\",\ \"locationName\":\"reason\"\ }\ },\ \"documentation\":\"

The input failed to meet the constraints specified by the AWS service.

\",\ \"error\":{\ \"httpStatusCode\":400,\ \"senderFault\":true\ },\ \"exception\":true\ },\ \"ValidationExceptionField\":{\ \"type\":\"structure\",\ \"required\":[\ \"Message\",\ \"Name\"\ ],\ \"members\":{\ \"Message\":{\ \"shape\":\"String\",\ \"documentation\":\"

A message with the reason for the validation exception error.

\",\ \"locationName\":\"message\"\ },\ \"Name\":{\ \"shape\":\"String\",\ \"documentation\":\"

The field name where the invalid entry was detected.

\",\ \"locationName\":\"name\"\ }\ },\ \"documentation\":\"

The input failed to meet the constraints specified by the AWS service in a specified field.

\"\ },\ \"ValidationExceptionFieldList\":{\ \"type\":\"list\",\ \"member\":{\"shape\":\"ValidationExceptionField\"}\ },\ \"ValidationExceptionReason\":{\ \"type\":\"string\",\ \"enum\":[\ \"UnknownOperation\",\ \"Missing\",\ \"CannotParse\",\ \"FieldValidationFailed\",\ \"Other\"\ ]\ },\ \"VehicleWeightUnit\":{\ \"type\":\"string\",\ \"enum\":[\ \"Kilograms\",\ \"Pounds\"\ ]\ }\ },\ \"documentation\":\"

\\\"Suite of geospatial services including Maps, Places, Routes, Tracking, and Geofencing\\\"

\"\ }\ "; } @end