Which version of the AWS Location Service is supported? #3908
-
We had an app that was using the AWS SDK and the LocationService. Both were v3. I am going through and doing some upgrading and I noticed that the AWS Location Service is now using a new REST API called "V2". When I go to the AWS Location Service page in the AWS Management Console, I see messages encouraging the use of the V2 API and I see warnings/advice to use the new V2 API when I go to the page for "Legacy maps, places, routes". I've read some of the documentation for the AWS Location Service and it says that we don't have to create things like place indexes or route calculators anymore. However, when I am looking at various things in the Amazon.LocationService namespace, it seems like we still have to supply place index names and route calculator names. This is making me thing that the AWS SDK isn't supporting the new V2 API for AWS Location Service. Is this correct? Should I still be creating legacy place indexes and route calculators if I want to use the AWS SDK for .NET? If so, are there any plans to support the new V2 API for AWS Location Service? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Are you referring to the V2 APIs listed here? https://docs.aws.amazon.com/location/latest/APIReference/API_Operations.html If yes, they were split into separate clients: AWSSDK.GeoRoutes, AWSSDK.GeoMaps, and AWSSDK.GeoPlaces (if you click on any of the operations, there should be a list at the bottom with the corresponding method in the .NET SDK - https://docs.aws.amazon.com/location/latest/APIReference/API_CalculateRoutes.html#API_CalculateRoutes_SeeAlso) |
Beta Was this translation helpful? Give feedback.
Are you referring to the V2 APIs listed here? https://docs.aws.amazon.com/location/latest/APIReference/API_Operations.html
If yes, they were split into separate clients: AWSSDK.GeoRoutes, AWSSDK.GeoMaps, and AWSSDK.GeoPlaces (if you click on any of the operations, there should be a list at the bottom with the corresponding method in the .NET SDK - https://docs.aws.amazon.com/location/latest/APIReference/API_CalculateRoutes.html#API_CalculateRoutes_SeeAlso)