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 tags to filter
Sort by most recent
4491 results
I was deploying one of the application which has platform service, being used by all other my services, so wanted to restrict the traffic to only those services domain, but I'm not able to find any su...
1
answers
0
votes
32
views
asked a day ago
![Enter image description here](/media/postImages/original/IMCeY5Ag9jQmaOuMXD84KCWg) I want to ask how to connect lambda trigger kafka with self managed kafka broker i do running kafka server and ope...
2
answers
0
votes
23
views
asked 2 days ago
I have been re-writing my aws-sdk v2 code to aws-sdk v3 (JavaScript). It has been pretty straightforward. However, I am having trouble with one section. The aws-sdk v3 code is failing with an error **...
1
answers
0
votes
30
views
asked 2 days ago
I tried Amazon Textract to analyze a single-page PDF document via the console and Lambda. The document has multiple bullet points of text sentences. I phrased exactly as the word appears in the docume...
1
answers
0
votes
32
views
asked 2 days ago
I want to deploy a lambda function that call OpenAI, do some processing for text and return result. ``` def openaipreprocessing(text): # call OpenAI api return vector def save_res...
2
answers
0
votes
36
views
asked 3 days ago
I received the following solutions for labeling a URL in a python lambda function: To label or name a URL in a Python Lambda function used in an SNS message, you can use HTML formatting within your me...
2
answers
0
votes
29
views
asked 4 days ago
I've built a chat app in React and I'm currently working on deploying the back-end API. My Lambda function, `createAccount`, is almost complete, but there's just one issue that needs to be addressed. ...
2
answers
0
votes
28
views
asked 4 days ago
I am running a lambda function to get the security group of instances. Here is part of the lambda function that is failing def get_security_groups(instance_id): try: response = ec2.descr...
1
answers
0
votes
29
views
asked 4 days ago
Using the following simple code with FASTAPI and Lambda URL ```python @app.get("/testcache/cache") async def testcache(response: Response): # Cache during 1 year headers = { "X-custom...
1
answers
0
votes
34
views
asked 5 days ago
While trying to update my lambda from 3.8 to **3.12 ** I faced issues on the imports of the lxml package. Runtime.ImportModuleError: Unable to import module 'lambda_function': cannot import name 'etr...
Accepted AnswerAWS Lambda
2
answers
0
votes
43
views
asked 5 days ago
I am currently using an Amazon RDS instance with the instance type db.m5.large and manually scaling the compute capacity up and down as needed. I would like to automate this process using CloudWatch a...
1
answers
0
votes
44
views
asked 6 days ago
The lambda has `AmazonSNSFullAccess`, the outbound rules for the lambda are allowed and the lambda is in a public subnet with an internet gateway. I want to publish from a lambda to an SNS topic but i...
1
answers
0
votes
42
views
asked 6 days ago