You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding authorizer field to collect context properties from authorizer (aws#77)
* Adding authorizer field to collect context properites from authorizer
* Updating toString() method
* Adding authorizer to equals() & hashCode()
* Moving authorizer under ProxyRequestContext
* Switching to Map<String, Object> for authorizer
Copy file name to clipboardExpand all lines: aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/APIGatewayProxyRequestEvent.java
+19-2
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,8 @@ public static class ProxyRequestContext implements Serializable, Cloneable {
60
60
61
61
privateStringpath;
62
62
63
+
privateMap<String, Object> authorizer;
64
+
63
65
/**
64
66
* default constructor
65
67
*/
@@ -88,6 +90,14 @@ public ProxyRequestContext withAccountId(String accountId) {
0 commit comments