Hi,
I’m facing the problem with API Gateway configuration.
I have 3 Lambda functions which are parts of same API.
getByStatus - GET /items/{status}
update - PUT /items/{id}
delete - DELETE /items/{id}
When I deploy this on AWS I have such error:
An error occurred: ApiGatewayResourceChecksIdVar - A sibling ({status}) of this resource already has a variable path part -- only one is allowed
Is there any way to fix this without path change?
I suppose there is an ability to do this due to different methods.
P.S. I’ve already tried to completely removed the CloudFormation Stack and it doesn’t help