Questions 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
Browse through the questions and answers listed below or filter and sort to narrow down your results.
4124 results
I am currently trying to execute Haskell code as an AWS Lambda function to test how well it runs. I am not totally familiar with docker and less familiar with AWS. I have been trying to follow a few...
In the [Managing your Amazon SES sending limits](https://docs.aws.amazon.com/ses/latest/dg/manage-sending-quotas.html) article, it says:
> Sending rate—The maximum number of emails that Amazon SES...
I'm trying to pass pipeline-level parameters into codepipeline from a python lambda, but it looks like Boto3 is not recognizing the 'variables' named parameter.
I'd appreciate some help if anyone has...
Hi, I have a desperate desire to allow users within my Identity Store to initiate their own password reset flows (instead of me logging into the console as admin and clicking "reset password").
I've...
Has anyone encountered this issue when deploying lambda with cloudformation templates?
Lambda will automatically create index.js , not index.mjs
Here is my cloudformation...
I have a lambda function which is supposed to write files on s3 to a folder in a bucket
I set this IAM role to the lambda function:
```
{
"Version": "2012-10-17",
"Statement": [
{
"Sid":...
I am running a python code in lambda that is writing an array into a csv and then uploading it to S3. The array objects are in different datatypes. When I test the python locally, the csv is produced...
Hello-
Please advise on the following:
Regarding the S3 bucket shared across accounts.
Purpose:
```
I want to trigger a Lambda function
when an S3 file is PUT.
```
Issues:
```
AWS CLI (Command...
Is it better to remediate non-complaint resources found by AWS Config via Lambda or System Manager Automation Documents?
Hi team.
i'm using axios in my lambda function to make an http request to an API GW :
```
//create axios client
const axiosInstance: AxiosInstance = axios.create({
baseURL: origin,
httpsAgent:...
I am having trouble making calls to Stripe via a lambda function. My function makes a call to the Stripe and I am receiving an error "Error: Request aborted due to timeout being reached (80000ms)". I...
I’m trying to set up [Neptune-to-Neptune replication using the Streams Consumer Application](https://docs.aws.amazon.com/neptune/latest/userguide/streams-consumer-setup.html), and I understand that...