Skip to content

Commit

Permalink
Polish AmazonLambdaContext
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand committed May 23, 2022
1 parent 0b37243 commit fb1b02d
Showing 1 changed file with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,18 @@

public class AmazonLambdaContext implements Context {

private String awsRequestId;
private String logGroupName;
private String logStreamName;
private String functionName;
private String functionVersion;
private String invokedFunctionArn;
private final String awsRequestId;
private final String logGroupName;
private final String logStreamName;
private final String functionName;
private final String functionVersion;
private final String invokedFunctionArn;
private CognitoIdentity cognitoIdentity;
private ClientContext clientContext;
private long runtimeDeadlineMs = 0;
private int memoryLimitInMB;
private LambdaLogger logger;
private final int memoryLimitInMB;
private final LambdaLogger logger;


public AmazonLambdaContext(HttpURLConnection request, ObjectReader cognitoReader, ObjectReader clientCtxReader)
throws IOException {
Expand Down

0 comments on commit fb1b02d

Please sign in to comment.