AWS Security ChangesHomeSearch

AWS location documentation change

Service: location · 2025-06-22 · Documentation low

File: location/latest/developerguide/cloudtrail.md

Summary

Removed documentation sections about CalculateRouteMatrix examples and geometry-based routing boundary implementation

Security assessment

The changes remove API usage examples but contain no security advisories, vulnerability disclosures, or access control modifications. This appears to be routine documentation pruning rather than security-related updates.

Diff

diff --git a/location/latest/developerguide/cloudtrail.md b/location/latest/developerguide/cloudtrail.md
index f099010c6..322ae31e0 100644
--- a//location/latest/developerguide/cloudtrail.md
+++ b//location/latest/developerguide/cloudtrail.md
@@ -5 +5 @@
-Amazon Location management events in CloudTrailAmazon Location data events in CloudTrailLearn about Amazon Location Service log file entriesExample: CloudTrail log file entry for an Amazon Location management eventExample: CloudTrail log file entry for an Amazon Location data eventCalculateRouteMatrix examplesCalculateRouteMatrix with a geometry-based routing boundary
+Amazon Location management events in CloudTrailAmazon Location data events in CloudTrailLearn about Amazon Location Service log file entriesExample: CloudTrail log file entry for an Amazon Location management eventExample: CloudTrail log file entry for an Amazon Location data event
@@ -53,4 +52,0 @@ For more information about CloudTrail pricing, see [AWS CloudTrail pricing](http
-  * CalculateRouteMatrix examples
-
-  * CalculateRouteMatrix with a geometry-based routing boundary
-
@@ -214,199 +209,0 @@ The following example shows a CloudTrail log entry for the `Geocode` operation,
-## CalculateRouteMatrix examples
-
-Use the following examples to understand how you can call the `CalculateRouteMatrix` operation with an unbounded routing boundary.
-
-Sample request
-    
-    
-    
-    {
-        "Origins": [
-            {
-                "Position": [-123.11679620827039, 49.28147612192166]
-            },
-            {
-                "Position": [-123.11179620827039, 49.3014761219]
-            }
-        ],
-        "Destinations": [
-            {
-                "Position": [-123.112317039, 49.28897192166]
-            }
-        ],
-        "DepartureTime": "2024-05-28T21:27:56Z",
-        "RoutingBoundary": {
-            "Unbounded": true
-        }
-    }
-
-Sample response
-    
-    
-    
-    {
-        "ErrorCount": 0,
-        "RouteMatrix": [
-            [
-                {
-                    "Distance": 1907,
-                    "Duration": 343
-                }
-            ],
-            [
-                {
-                    "Distance": 5629,
-                    "Duration": 954
-                }
-            ]
-        ],
-        "RoutingBoundary": {
-            "Unbounded": true
-        }
-    }
-
-cURL
-    
-    
-    
-    curl --request POST \
-      --url 'https://routes.geo.eu-central-1.amazonaws.com/v2/route-matrix?key=Your_key' \
-      --header 'Content-Type: application/json' \
-      --data '{
-        "Origins": [
-            {
-                "Position": [-123.11679620827039, 49.28147612192166]
-            },
-            {
-                "Position": [-123.11179620827039, 49.3014761219]
-            }
-        ],
-        "Destinations": [
-            {
-                "Position": [-123.112317039, 49.28897192166]
-            }
-        ],
-        "DepartureTime": "2024-05-28T21:27:56Z",
-        "RoutingBoundary": {
-            "Unbounded": true
-        }
-    }'
-
-AWS CLI
-    
-    
-    
-    aws geo-routes calculate-route-matrix --key ${YourKey} \
-    --origins '[{"Position": [-123.11679620827039, 49.28147612192166]}, {"Position": [-123.11179620827039, 49.3014761219]}]' \
-    --destinations '[{"Position": [-123.11179620827039, 49.28897192166]}]' \
-    --departure-time "2024-05-28T21:27:56Z" \
-    --routing-boundary '{"Unbounded": true}'
-
-## CalculateRouteMatrix with a geometry-based routing boundary
-
-This example shows how you can specify a geometry-based routing boundary when you call `CalculateRouteMatrix`.
-
-Sample request
-    
-    
-    
-    {
-        "Origins": [
-            {
-                "Position": [-123.11679620827039, 49.28147612192166]
-            },
-            {
-                "Position": [-123.11179620827039, 49.3014761219]
-            }
-        ],
-        "Destinations": [
-            {
-                "Position": [-123.112317039, 49.28897192166]
-            }
-        ],
-        "DepartureTime": "2024-05-28T21:27:56Z",
-        "RoutingBoundary": {
-            "Geometry": {
-                "AutoCircle": {
-                    "Margin": 10000,
-                    "MaxRadius": 30000
-                }
-            }
-        }
-    }
-
-Sample response
-    
-    
-    
-    {
-        "ErrorCount": 0,
-        "RouteMatrix": [
-            [
-                {
-                    "Distance": 1907,
-                    "Duration": 344
-                }
-            ],
-            [
-                {
-                    "Distance": 5629,
-                    "Duration": 950
-                }
-            ]
-        ],
-        "RoutingBoundary": {
-            "Geometry": {
-                "Circle": {
-                    "Center": [
-                        -123.1142962082704,
-                        49.29147612191083
-                    ],
-                    "Radius": 11127
-                }
-            },
-            "Unbounded": false
-        }
-    }
-
-cURL
-    
-    
-    
-    curl --request POST \
-      --url 'https://routes.geo.eu-central-1.amazonaws.com/v2/route-matrix?key=Your_key' \
-      --header 'Content-Type: application/json' \
-      --data '{
-        "Origins": [
-            {
-                "Position": [-123.11679620827039, 49.28147612192166]
-            },
-            {
-                "Position": [-123.11179620827039, 49.3014761219]
-            }
-        ],
-        "Destinations": [
-            {
-                "Position": [-123.112317039, 49.28897192166]
-            }
-        ],
-        "DepartureTime": "2024-05-28T21:27:56Z",
-        "RoutingBoundary": {
-            "Geometry": {
-                "AutoCircle": {
-                    "Margin": 10000,
-                    "MaxRadius": 30000
-                }
-            }
-        }