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 }...
2
answers
0
votes
108
views
asked 19 days ago
I am trying to address the following error: ``` Message returned: UnauthorizedOperation: You are not authorized to perform this operation. User: arn:aws:sts::<account...
1
answers
0
votes
96
views
richar
asked 20 days ago
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...
1
answers
0
votes
125
views
Carrolo
asked 20 days ago
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...
1
answers
0
votes
151
views
richar
asked 20 days ago
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",...
3
answers
0
votes
194
views
richar
asked 21 days ago
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...
2
answers
0
votes
178
views
Vas
asked 21 days ago
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...
1
answers
0
votes
227
views
em
asked 22 days ago
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...
3
answers
0
votes
309
views
asked 22 days ago
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...
2
answers
0
votes
239
views
asked 22 days ago
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...
2
answers
0
votes
136
views
asked 23 days ago
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...
1
answers
0
votes
132
views
asked 23 days ago
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...
2
answers
0
votes
136
views
asked 23 days ago