Skip to main content
AWS Lambda is a serverless compute service that lets you run code without provisioning or managing servers. You just upload your code (as a ZIP package or container image), and Lambda automatically scales and runs it in response to events such as API Gateway requests, S3 object uploads, DynamoDB streams, or scheduled CloudWatch events. Lambda integrates seamlessly with VPC, IAM, Security Groups, and other AWS services, making it a core component of modern serverless applications.

Example

To create the AWSLambdaHandler with AWS credentials:
List Lambda Functions:
Retrieves all Lambda functions in the account, including runtime, handler, role, security groups, IAM policies, and environment configurations.
Get IAM Role Policies for a Lambda Role:
Fetches all attached and inline IAM policies for the IAM role associated with a Lambda.
Get Security Group Details:
Fetches inbound/outbound rules for security groups attached to a Lambda function’s VPC.