Help us improve AWS re:Post! We're interested in understanding how you use re:Post and its impact on your AWS journey. Please take a moment to complete our brief 3-question survey.
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...

I want to ask how to connect lambda trigger kafka with self managed kafka broker
i do running kafka server and ope...
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 **...
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...
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...
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...
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. ...
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...
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...
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...
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...
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...