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
I want to create schedule programatically to trigger lambda function at newScheduledTimeISO
Here is code that I use (it doesn't work as I want)
```ts
"use server"
import { CreateScheduleCommand }...
I am trying to address the following error:
```
Message returned: UnauthorizedOperation: You are not authorized to perform this operation. User:
arn:aws:sts::<account...
I am trying to implement a custom Lambda function in my app in order to check users and federate data. The goal is to be able to federate data based on user using my current user management system.
I...
When trying to deploy the resources below, I am getting the following error for Custom::VpcRestrictDefaultSG resource:
```
Message returned: UnauthorizedOperation: You are not authorized to perform...
My use case is that I want to deploy a Lambda in a vpc but also give it internet access.
I initially created a VPC with default parameters, i.e.
```
const vpc = new ec2.Vpc(this, "vpc",...
I have written an ETL job in AWS Glue using the interactive notebook and I want to enable job bookmark to avoid reprocessing already processed data. The source data are in an S3 bucket, a Glue data...
Hi all,
I'm building a chatbot using AWS Bedrock, Lambda, and OSS. The chatbot will be customer-facing and will be on our website for customers to query and ask it generic FAQ queries, as well as...
I need to create a Lambda function that validates whether each IAM user in an AWS account has MFA enabled. If a user does not have MFA, I need to trigger another Lambda function to handle that user...
I want to trigger a Lambda function whenever a user deactivates their MFA. To achieve this, I've set up an AWS CloudFormation template that creates a CloudTrail trail and an EventBridge...
I have a lambda that will create a codecommit repository. It works fine when testing locally, but the connection to codecommit times out when run in aws. The logs show that dns is working, it is able...
Hello.
I'm quite new with Lambda and I'm trying to run execute a PHP script with the FrankenPHP CLI.
I'm doing so by having a bootstrap script that contains the following:
```bash
#!/bin/bash
set...
Hello
I am using KMS key to encrypt a kinesis stream. I have two separate threads in one lambda. One of the lambda is posting data into streams by using CMK encryption type and the other thread...