Rob Bednark
Rob Bednark

Reputation: 28212

Where is the documentation for AWS API Gateway Lambda Error Regex?

Where is the documentation for the allowable Lambda Error Regex values for the AWS API Gateway? Are they Perl regexes? POSIX regexes? Something else?

enter image description here

Upvotes: 8

Views: 1041

Answers (1)

RyanG
RyanG

Reputation: 4152

Integration response regexes are currently limited to Java "Pattern" style regexes. See https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html

Upvotes: 4

Related Questions