Package io.quarkus.amazon.lambda.runtime
Class AmazonLambdaContext
- java.lang.Object
-
- io.quarkus.amazon.lambda.runtime.AmazonLambdaContext
-
- All Implemented Interfaces:
com.amazonaws.services.lambda.runtime.Context
public class AmazonLambdaContext extends Object implements com.amazonaws.services.lambda.runtime.Context
-
-
Constructor Summary
Constructors Constructor Description AmazonLambdaContext(HttpURLConnection request, com.fasterxml.jackson.databind.ObjectReader cognitoReader, com.fasterxml.jackson.databind.ObjectReader clientCtxReader)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAwsRequestId()com.amazonaws.services.lambda.runtime.ClientContextgetClientContext()StringgetFunctionName()StringgetFunctionVersion()com.amazonaws.services.lambda.runtime.CognitoIdentitygetIdentity()StringgetInvokedFunctionArn()com.amazonaws.services.lambda.runtime.LambdaLoggergetLogger()StringgetLogGroupName()StringgetLogStreamName()intgetMemoryLimitInMB()intgetRemainingTimeInMillis()
-
-
-
Constructor Detail
-
AmazonLambdaContext
public AmazonLambdaContext(HttpURLConnection request, com.fasterxml.jackson.databind.ObjectReader cognitoReader, com.fasterxml.jackson.databind.ObjectReader clientCtxReader) throws IOException
- Throws:
IOException
-
-
Method Detail
-
getAwsRequestId
public String getAwsRequestId()
- Specified by:
getAwsRequestIdin interfacecom.amazonaws.services.lambda.runtime.Context
-
getLogGroupName
public String getLogGroupName()
- Specified by:
getLogGroupNamein interfacecom.amazonaws.services.lambda.runtime.Context
-
getLogStreamName
public String getLogStreamName()
- Specified by:
getLogStreamNamein interfacecom.amazonaws.services.lambda.runtime.Context
-
getFunctionName
public String getFunctionName()
- Specified by:
getFunctionNamein interfacecom.amazonaws.services.lambda.runtime.Context
-
getFunctionVersion
public String getFunctionVersion()
- Specified by:
getFunctionVersionin interfacecom.amazonaws.services.lambda.runtime.Context
-
getInvokedFunctionArn
public String getInvokedFunctionArn()
- Specified by:
getInvokedFunctionArnin interfacecom.amazonaws.services.lambda.runtime.Context
-
getIdentity
public com.amazonaws.services.lambda.runtime.CognitoIdentity getIdentity()
- Specified by:
getIdentityin interfacecom.amazonaws.services.lambda.runtime.Context
-
getClientContext
public com.amazonaws.services.lambda.runtime.ClientContext getClientContext()
- Specified by:
getClientContextin interfacecom.amazonaws.services.lambda.runtime.Context
-
getRemainingTimeInMillis
public int getRemainingTimeInMillis()
- Specified by:
getRemainingTimeInMillisin interfacecom.amazonaws.services.lambda.runtime.Context
-
getMemoryLimitInMB
public int getMemoryLimitInMB()
- Specified by:
getMemoryLimitInMBin interfacecom.amazonaws.services.lambda.runtime.Context
-
getLogger
public com.amazonaws.services.lambda.runtime.LambdaLogger getLogger()
- Specified by:
getLoggerin interfacecom.amazonaws.services.lambda.runtime.Context
-
-