I’m updating an API in AWS API Gateway. This is my lambda function:
JavaScript
x
15
15
1
response = client.update_method(
2
restApiId=rest_api_id,
3
resourceId=resource_id,
4
httpMethod= "GET", #method
5
patchOperations=[
6
{
7
'op': 'replace',
8
# 'path': '/apiKeyRequired',
9
# 'value': 'true',
10
'path': '/methodIntegration/uri',
11
'value': 'https://stackoverflow.com',
12
},
13
]
14
)
15
This works fine and updates “API key required” field, but when I try to update the “URI” field it throws the following error.
"errorMessage": "An error occurred (BadRequestException) when calling the UpdateMethod operation: Invalid patch path /methodIntegration/uri",
The path looks fine to me. Docs: https://docs.aws.amazon.com/cli/latest/reference/apigateway/update-method.html
Advertisement
Answer
apiKeyRequired
works because it is a valid property of a method
. To update integration
you should use update-integration where uri
is its valid property.