Я использую AWS API-шлюз в качестве прокси для DynamoDb в соответствии с этой документацией: https://aws.amazon.com/blogs/compute/using-amazon-api-gateway-as-a-proxy-for-dynamodb/
При тестировании в API-шлюзе результат выглядит следующим образом:
{
"Count": 6,
"Items": [
{
"mini_description": {
"S": "A veg sandwich"
},
"item_description": {
"S": "A veg sandwich filled with a lot of healthy vegetables"
},
"id": {
"S": "6d0e0870-......-c5ccfbc0424c"
},
"image_url": {
"S": "https://......png"
},
"price": {
"N": "25"
},
"name": {
"S": "Veg Sandwich"
},
"item_type": {
"S": "Main Dish"
}
},
{
"mini_description": {
"S": "A normal hot coffee"
},.....
Мне нужно это в следующем формате:
{
"Count": 6,
"Items": [
{
"mini_description": "A veg sandwich",
"item_description": "A veg sandwich filled with a lot of healthy vegetables",
"id": "6d0e0870-.......-c5ccfbc0424c",
"image_url": "https://.......png",
"price": 25,
"name": "Veg Sandwich",
"item_type": "Main Dish"
},
{
"mini_description": "A normal hot coffee",............
Есть ли какая-либо процедура, чтобы изменить это через ответ интеграции шлюза API?