# LambdaWrapper

> **Class** in `langchain_community`

📖 [View in docs](https://reference.langchain.com/python/langchain-community/utilities/awslambda/LambdaWrapper)

Wrapper for AWS Lambda SDK.
To use, you should have the ``boto3`` package installed
and a lambda functions built from the AWS Console or
CLI. Set up your AWS credentials with ``aws configure``

## Signature

```python
LambdaWrapper()
```

## Description

**Example:**

.. code-block:: bash

pip install boto3

aws configure

## Extends

- `BaseModel`

## Properties

- `lambda_client`
- `function_name`
- `awslambda_tool_name`
- `awslambda_tool_description`
- `model_config`

## Methods

- [`validate_environment()`](https://reference.langchain.com/python/langchain-community/utilities/awslambda/LambdaWrapper/validate_environment)
- [`run()`](https://reference.langchain.com/python/langchain-community/utilities/awslambda/LambdaWrapper/run)

---

[View source on GitHub](https://github.com/langchain-ai/langchain-community/blob/a6a6079511ac8a5c1293337f88096b8641562e77/libs/community/langchain_community/utilities/awslambda.py#L9)