Is it possible to have a variable number of path parameters on an API gateway URL?
i.e. APIGW runs theoretical lambda function that sums numbers in a URL:
/dev/myservice/sum/1/2 => sum(1,2) => 3
/dev/myservice/sum/1/2/3/3/3 => sum(1,2,3,3,3) => 12
If this is possible, then how do I do it?