All Content tagged with AWS Lambda
AWS Lambda is a serverless, event-driven compute service that lets you run code for virtually any type of application or backend service without provisioning or managing servers. You can trigger Lambda from over 200 AWS services and software as a service (SaaS) applications, and only pay for what you use.
Content language: English
Select up to 5 tags to filter
Sort by most recent
This code is working for some of the assets in datazone but giving error for some assets, Do I need to change code for according to the asset type? or what can I change to fix the error?
Content = ...
Hi, I have my Express "server" (serverless routes) configured in AWS Lambda behind API Gateway, with the Lambda having 20 units of provisioned concurrency to prevent cold starts. My API serves our...
My GET requests works flawlessly with my REST API endpoints, but my POST request returns 504 -> {
"message": "Endpoint request timed out"
}
in less than a second. I have timeout set to 3 minutes on...
I am using serverless https://www.serverless.com/ to deploy lambda functions to aws. A problem ive encountered is that the endpoint url will sometimes change when the stack has been modified, breaking...
My Objects in S3 are organised in below format:
```
skey=aaaaa-aaaaa-aaaaa-aaaaa/Category=yyyyyyy/ts=20230826T052300Z/abc
skey=aaaaa-aaaaa-aaaaa-aaaaa/Category=zzzzzzz/ts=20200826T052300Z/xyz
```
I...
I've created an EFS for adding dependencies to a lambda function to overcome the 250mb limit using layers. When trying my code I get : [ERROR] Runtime.ImportModuleError: Unable to import module...
I have a lambda and a neptune DB in the same VPC. I am trying to read from the neptune DB stream, but when running the lambda I am getting a connection error.
```
EndpointConnectionError: Could not...
Hi team,
I’m working with Node.js and TypeScript for my Lambda function, and I need to convert an image (e.g., image.jpg) retrieved from an S3 bucket into a base64-encoded string.
Here’s what I’ve...
Hi,
I've created an backend with Serverless framework. Which uses API Gateway and lambdas. After building I've found that a vendor that my lambdas send requests to needs to come from a static ip...
Hi,
I'm facing an issue with my Lambda function that requires several Python packages, causing the deployment package to exceed the 60MB size limit. I tried creating a Lambda Layer for the...
Novice user.
My goal is to write Lambda functions in Go and turn them into API Gateway APIs. I created a "Hello, World" Go executable and turned it into a Lambda. The Lambda test passed.
I then built...
Hi All,
I am using AWS CDK to generate my CloudFormation template and the following is the template it created for me. I have copied the necessary output for my question.
As you can see the I have...