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
Filter content
Select tags to filter
Sort by
Sort by most recent
5053 results
I have developed an architecture using Amazon Connect, Amazon Lex V2, and AWS Lambda.
Architecture flow:
Amazon Connect → Amazon Lex V2 → AWS Lambda
In this implementation:
Amazon Connect handles t...
1
answers
0
votes
87
views
asked 2 months ago
Our application has been completely down for over 13 hours. We have already initiated chat support twice (Case ID: [Introduceți ID-ul tichetului de chat, dacă există]), but we have only been told to w...
1
answers
0
votes
91
views
asked 2 months ago
My CloudFormation stack has been stuck in `CREATE_IN_PROGRESS` for over 44 minutes now on a custom resource. The stack events show:
```
AWS::CloudFormation::CustomResource | MyCustomResource | CREATE...
1
answers
1
votes
86
views
asked 3 months ago
I have a CloudFormation custom resource that needs to generate X.509 certificates (for ACM PCA or Client VPN). I'm using inline Python code (`ZipFile` in the template) because I want the stack to be s...
2
answers
2
votes
179
views
I am building a scheduled SMS processing system using AWS Lambda + Amazon Pinpoint SMS Voice V2 in C# (.NET 6/8).
**Flow:**
EventBridge Scheduler
-> SchedulerProcess Lambda
-> invokes Ta...
Our supervisor agent consistently fails with failureCode 400 and
failureReason "Failed to parse LLM raw response" when it retrieves
results from a Knowledge Base and then needs to ask the user a
clari...
2
answers
0
votes
82
views
asked 3 months ago
We are a Platform Engineering team managing a large-scale AWS Lambda estate. AWS has reached End-of-Life for Python 3.8/3.9 runtimes, requiring us to migrate to Python 3.12. The scope is significant:
...
1
answers
0
votes
100
views
asked 3 months ago
I'm trying to invoke `anthropic.claude-sonnet-4-20250514-v1:0` from a Lambda function in eu-west-1 using the Python SDK:
```python
bedrock = boto3.client('bedrock-runtime')
response = bedrock.invoke_...
2
answers
2
votes
417
views
I have an AWS Amplify app (App ID: d3iy6p3suuwd64, region: eu-west-2) configured as WEB_COMPUTE. The build artifact zip contains a correct deploy-manifest.json with computeResources block (nodejs20.x ...
Jason ShenSUPPORT ENGINEER
published 3 months ago0 votes193 views
After Amazon GuardDuty Malware Protection for S3 scans an uploaded object, you might want to automatically move clean files to a trusted bucket and quarantine infected files. This article shows how to...
I have one lambda function that spawns different workflows based on a strategy pattern.
Everything works great in terms of execution and monitoring inside the AWS console.
I want to build a small back...
Accepted AnswerAWS Lambda
I want to resolve the "Endpoint request timed out" error with HTTP status code 504 that I receive when my Lambda function calls an Amazon API Gateway endpoint that triggers a downstream Lambda perform...