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-runtime-interface-client/src/main/java/com/amazonaws/services/lambda/runtime/api/client/runtimeapi/InvocationRequest.java
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -13,40 +13,40 @@ public class InvocationRequest {
13
13
/**
14
14
* The Lambda request ID associated with the request.
15
15
*/
16
-
privateStringid;
16
+
publicStringid;
17
17
18
18
/**
19
19
* The X-Ray tracing ID.
20
20
*/
21
-
privateStringxrayTraceId;
21
+
publicStringxrayTraceId;
22
22
23
23
/**
24
24
* The ARN of the Lambda function being invoked.
25
25
*/
26
-
privateStringinvokedFunctionArn;
26
+
publicStringinvokedFunctionArn;
27
27
28
28
/**
29
29
* Function execution deadline counted in milliseconds since the Unix epoch.
30
30
*/
31
-
privatelongdeadlineTimeInMs;
31
+
publiclongdeadlineTimeInMs;
32
32
33
33
/**
34
34
* The client context header. This field is populated when the function is invoked from a mobile client.
35
35
*/
36
-
privateStringclientContext;
36
+
publicStringclientContext;
37
37
38
38
/**
39
39
* The Cognito Identity context for the invocation. This field is populated when the function is invoked with AWS
40
40
* credentials obtained from Cognito Identity.
41
41
*/
42
-
privateStringcognitoIdentity;
42
+
publicStringcognitoIdentity;
43
43
44
44
/**
45
45
* An input stream of the invocation's request body.
Copy file name to clipboardExpand all lines: aws-lambda-java-runtime-interface-client/src/main/java/com/amazonaws/services/lambda/runtime/api/client/runtimeapi/LambdaRuntimeClient.java
0 commit comments