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
Copy file name to clipboardExpand all lines: aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/APIGatewayProxyRequestEvent.java
+30-3
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,8 @@ public static class ProxyRequestContext implements Serializable, Cloneable {
50
50
51
51
privateStringrequestId;
52
52
53
+
privateStringoperationName;
54
+
53
55
privateRequestIdentityidentity;
54
56
55
57
privateStringresourcePath;
@@ -282,6 +284,25 @@ public ProxyRequestContext withPath(String path) {
282
284
returnthis;
283
285
}
284
286
287
+
/**
288
+
* @return The name of the operation being performed
289
+
* */
290
+
publicStringgetOperationName() {
291
+
returnoperationName;
292
+
}
293
+
294
+
/**
295
+
* @param operationName The name of the operation being performed
0 commit comments