GitHub
github.com › aws › aws-sdk-js-v3
GitHub - aws/aws-sdk-js-v3: Modularized AWS SDK for JavaScript. · GitHub
March 7, 2026 - When using Lambda we should use a single SDK client per service, per region, and initialize it outside of the handler's codepath. This is done to optimize for Lambda's container reuse.
Starred by 3.6K users
Forked by 678 users
Languages TypeScript 96.0% | JavaScript 3.8% | Java 0.2% | Smithy 0.0% | Makefile 0.0% | Objective-C 0.0%
GitHub
github.com › aws › aws-durable-execution-sdk-js
GitHub - aws/aws-durable-execution-sdk-js: Lambda durable functions SDK, Testing SDK and fully functional examples · GitHub
Lambda durable functions SDK, Testing SDK and fully functional examples - aws/aws-durable-execution-sdk-js
Starred by 76 users
Forked by 15 users
Languages TypeScript 98.4% | JavaScript 1.6%
Does @aws-sdk/* need to be installed for lambda ?
Do I need to install @aws-sdk/* packages for lambda? Or it's already included in lambda nodejs runtime just like aws-sdk. More on github.com
Creating / Uploading Lambda Functions using AWS SDK for Java
The lambda API (and thus the Java SDK) has a CreateFunction action. You can provide the raw bytes of the zipped lambda package or specify a location in S3. Conversely there is a GetFunction action that will provide the existing config for a function (including a pre-signed url to download the code) for an already uploaded lambda package. So you could replicate your functions and/or create in multiple regions using these APIs. As a general rule, anything you can do in the console you can do via the SDK. edit: I'd also recommend looking into using an IaC solution for creating your functions in multiple regions. Something like Cloudformation, CDK, or Terraform can make deploying identical resources across multiple accounts/regions a lot smoother. More on reddit.com
Using AWS-SDK in AWS Lambda function?
I enabled XRay and put in try/catch. Turns out function was not connecting to ecs endpoint because there wasn't one. The lambda function is connected to a VPC, and I didn't know I needed to set a service endpoint within that VPC to use the SDK. Thanks so much guys, you definitely saved me hours of doing nothing but driving my head up a wall. More on reddit.com
Using aws-sdk inside lambda?
According to the documentation, the version of “aws-sdk” available in Lambda execution environments is 2.290.0. ApiGatewayManagementApi looks to have been added in 2.379.0.
In this case, it looks as though you’ll have to include “aws-sdk” in the deployment package. (Or include it in a Layer, or any number of other solutions.)
More on reddit.comVideos
42:46
Hands on with AWS Lambda Durable Functions - YouTube
37:49
AWS Lab 7.1: Creating Lambda Functions Using the AWS SDK for Python ...
03:01
AWS Lambda Function: 9 Things You NEED To Know 🎯 - YouTube
02:20
Building AWS Lambda functions | AWS Lambda Fundamentals - YouTube
Resolving AWS SDK Load Issues in Lambda after Upgrading ...
GitHub
github.com › aws › aws-sdk-js-v3 › blob › main › supplemental-docs › AWS_LAMBDA.md
aws-sdk-js-v3/supplemental-docs/AWS_LAMBDA.md at main · aws/aws-sdk-js-v3
Modularized AWS SDK for JavaScript. Contribute to aws/aws-sdk-js-v3 development by creating an account on GitHub.
Author aws
GitHub
github.com › aws › aws-sdk-js-v3 › blob › main › clients › client-lambda › src › LambdaClient.ts
aws-sdk-js-v3/clients/client-lambda/src/LambdaClient.ts at main · aws/aws-sdk-js-v3
Modularized AWS SDK for JavaScript. Contribute to aws/aws-sdk-js-v3 development by creating an account on GitHub.
Author aws
GitHub
github.com › aws › aws-sdk-java › blob › master › aws-java-sdk-lambda › src › main › java › com › amazonaws › services › lambda › AWSLambdaClient.java
aws-sdk-java/aws-java-sdk-lambda/src/main/java/com/amazonaws/services/lambda/AWSLambdaClient.java at master · aws/aws-sdk-java
The AWS SDK for Java 2.x is available here: https://github.com/aws/aws-sdk-java-v2/ - aws-sdk-java/aws-java-sdk-lambda/src/main/java/com/amazonaws/services/lambda/AWSLambdaClient.java at master · aws/aws-sdk-java
Author aws
GitHub
github.com › aws › aws-sdk-js › blob › master › clients › lambda.d.ts
aws-sdk-js/clients/lambda.d.ts at master · aws/aws-sdk-js
Configure your HTTP client, SDK, firewall, proxy, or operating system to allow for long connections with timeout or keep-alive settings. This operation requires permission for the lambda:InvokeFunction action. For details on how to set up permissions for cross-account invocations, see Granting function access to other accounts. ... invoke(params: Lambda.Types.InvocationRequest, callback?: (err: AWSError, data: Lambda.Types.InvocationResponse) => void): Request<Lambda.Types.InvocationResponse, AWSError>;
Author aws
Go Packages
pkg.go.dev › github.com › aws › aws-sdk-go › service › lambda
lambda package - github.com/aws/aws-sdk-go/service/lambda - Go Packages
Package lambda provides the client and types for making API requests to AWS Lambda.
GitHub
github.com › aws › aws-lambda-go
GitHub - aws/aws-lambda-go: Libraries, samples and tools to help Go developers develop AWS Lambda functions. · GitHub
Starred by 3.8K users
Forked by 574 users
Languages Go
GitHub
github.com › aws › aws-lambda-java-libs
GitHub - aws/aws-lambda-java-libs: Official mirror for interface definitions and helper classes for Java code running on the AWS Lambda platform. · GitHub
This package provides helper classes/methods to use alongside aws-lambda-java-events in order to transform Lambda input event model objects into SDK-compatible output model objects.
Starred by 547 users
Forked by 240 users
Languages C++ 51.2% | Java 46.2% | Shell 2.0% | CMake 0.3% | Makefile 0.2% | C 0.1%
GitHub
github.com › DiegoZoracKy › lambda-aws-sdk-call
GitHub - DiegoZoracKy/lambda-aws-sdk-call: A common Lambda to call any AWS service via AWS SDK
A common Lambda to call any AWS service via AWS SDK. It is based on the AWSJavaScriptSDK. Check the documentation to get Config, Services, Methods and Parameters names.
Author DiegoZoracKy
GitHub
github.com › dwyl › learn-aws-lambda
GitHub - dwyl/learn-aws-lambda: ✨ Learn how to use AWS Lambda to easily create infinitely scalable web services
Firstly let's create a new directory that will hold our Lambda function and all of its modules ... Install an NPM package of your choice. We'll use the aws-sdk as an example
Starred by 1K users
Forked by 202 users
Languages JavaScript 94.1% | Shell 5.9% | JavaScript 94.1% | Shell 5.9%
AWS
docs.aws.amazon.com › aws sdk code examples › code library › code examples by sdk using aws sdks › code examples for sdk for javascript (v3) › lambda examples using sdk for javascript (v3)
Lambda examples using SDK for JavaScript (v3) - AWS SDK Code Examples
GitHub repo. The following code examples show you how to perform actions and implement common scenarios by using the AWS SDK for JavaScript (v3) with Lambda.
GitHub
github.com › aws › aws-durable-execution-sdk-python
GitHub - aws/aws-durable-execution-sdk-python: Lambda durable functions SDK · GitHub
January 16, 2026 - Lambda durable functions SDK. Contribute to aws/aws-durable-execution-sdk-python development by creating an account on GitHub.
Starred by 41 users
Forked by 13 users
Languages Python
GitHub
github.com › aws-samples › aws-lambda-extensions
GitHub - aws-samples/aws-lambda-extensions: A collection of sample extensions to help you get started with AWS Lambda Extensions · GitHub
A collection of sample extensions to help you get started with AWS Lambda Extensions - aws-samples/aws-lambda-extensions
Starred by 486 users
Forked by 147 users
Languages Go 46.1% | Python 18.5% | Shell 11.3% | JavaScript 8.1% | Rust 7.6% | C# 4.2%
AWS
docs.aws.amazon.com › aws sdk for .net › developer guide › sdk for .net code examples › lambda examples using sdk for .net
Lambda examples using SDK for .NET - AWS SDK for .NET (V3)
For API details, see the following topics in AWS SDK for .NET API Reference. ... The following code example shows how to use CreateFunction. ... There's more on GitHub. Find the complete example and learn how to set up and run in the AWS Code Examples Repository ... /// <summary> /// Creates a new Lambda function.
AWS
docs.aws.amazon.com › aws sdk code examples › code library › code examples by sdk using aws sdks › code examples for sdk for go v2 › lambda examples using sdk for go v2
Lambda examples using SDK for Go V2 - AWS SDK Code Examples
... Create an interactive scenario that shows you how to get started with Lambda functions. import ( "archive/zip" "bytes" "context" "encoding/base64" "encoding/json" "errors" "fmt" "log" "os" "strings" "time" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/service/iam" iamtypes "github.com/aws/aws-sdk-go-v2/service/iam/types" "github.com/aws/aws-sdk-go-v2/service/lambda" "github.com/awsdocs/aws-doc-sdk-examples/gov2/demotools" "github.com/awsdocs/aws-doc-sdk-examples/gov2/lambda/actions" ) // GetStartedFunctionsScenario shows you how to use AWS Lambda to perform the following // actions: // // 1.
Amazon Web Services
docs.aws.amazon.com › aws lambda › developer guide › using lambda with an aws sdk
Using Lambda with an AWS SDK - AWS Lambda
Provides links to AWS SDK developer guides and to code example folders (on GitHub) to help interested customers quickly find the information they need to start building applications.
AWS
docs.aws.amazon.com › aws sdk code examples › code library › code examples by sdk using aws sdks › code examples for sdk for javascript (v2) › lambda examples using sdk for javascript (v2)
Lambda examples using SDK for JavaScript (v2) - AWS SDK Code Examples
GitHub repo. The following code examples show you how to perform actions and implement common scenarios by using the AWS SDK for JavaScript (v2) with Lambda.
AWS
docs.aws.amazon.com › aws sdk for javascript › developer guide for sdk version 3 › sdk for javascript (v3) code examples › lambda examples using sdk for javascript (v3)
Lambda examples using SDK for JavaScript (v3) - AWS SDK for JavaScript
For API details, see Invoke in AWS SDK for JavaScript API Reference. The following code example shows how to use ListFunctions. ... There's more on GitHub. Find the complete example and learn how to set up and run in the AWS Code Examples Repository ... const listFunctions = () => { const client = new LambdaClient({}); const command = new ListFunctionsCommand({}); return client.send(command); };