Type annotations for boto3.Lambda 1.20.49 service generated by mypy-boto3-builder 6.4.2
Project description
mypy-boto3-lambda
Type annotations for boto3.Lambda 1.20.49 service compatible with VSCode, PyCharm, Emacs, Sublime Text, mypy, pyright and other tools.
Generated by mypy-boto3-builder 6.4.2.
More information can be found on boto3-stubs page and in mypy-boto3-lambda docs
See how it helps to find and fix potential bugs:
How to install
VSCode extension
Add
AWS Boto3
extension to your VSCode and run AWS boto3: Quick Start command.
Click Modify and select boto3 common and Lambda.
From PyPI with pip
Install boto3-stubs for Lambda service.
# install with boto3 type annotations
python -m pip install 'boto3-stubs[lambda]'
# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'boto3-stubs-lite[lambda]'
# standalone installation
python -m pip install mypy-boto3-lambda
From conda-forge
Installing mypy-boto3-lambda from the conda-forge channel can be achieved
by adding conda-forge to your channels with:
conda config --add channels conda-forge
conda config --set channel_priority strict
Once the conda-forge channel has been enabled, mypy-boto3-lambda can be
installed with:
conda install mypy-boto3-lambda
It is possible to list all of the versions of mypy-boto3-lambda available on
your platform with:
conda search mypy-boto3-lambda --channel conda-forge
Usage
VSCode
- Install Python extension
- Install Pylance extension
- Set
Pylanceas your Python Language Server - Install
boto3-stubs[lambda]in your environment:python -m pip install 'boto3-stubs[lambda]'
Both type checking and auto-complete should work for Lambda service. No
explicit type annotations required, write your boto3 code as usual.
PyCharm
- Install
boto3-stubs[lambda]in your environment:python -m pip install 'boto3-stubs[lambda]'
Both type checking and auto-complete should work for Lambda service. No
explicit type annotations required, write your boto3 code as usual.
Auto-complete can be slow on big projects or if you have a lot of installed
boto3-stubs submodules.
Other IDEs
Not tested, but as long as your IDE supports mypy or pyright, everything
should work.
mypy
- Install
mypy:python -m pip install mypy - Install
boto3-stubs[lambda]in your environment:python -m pip install 'boto3-stubs[lambda]' - Run
mypyas usual
Type checking should work for Lambda service. No explicit type annotations
required, write your boto3 code as usual.
pyright
- Install
pyright:yarn global add pyright - Install
boto3-stubs[lambda]in your environment:python -m pip install 'boto3-stubs[lambda]' - Optionally, you can install
boto3-stubstotypingsfolder.
Type checking should work for Lambda service. No explicit type annotations
required, write your boto3 code as usual.
Explicit type annotations
Client annotations
LambdaClient provides annotations for boto3.client("lambda").
from boto3.session import Session
from mypy_boto3_lambda import LambdaClient
client: LambdaClient = Session().client("lambda")
# now client usage is checked by mypy and IDE should provide code auto-complete
Paginators annotations
mypy_boto3_lambda.paginator module contains type annotations for all
paginators.
from boto3.session import Session
from mypy_boto3_lambda import LambdaClient
from mypy_boto3_lambda.paginator import (
ListAliasesPaginator,
ListCodeSigningConfigsPaginator,
ListEventSourceMappingsPaginator,
ListFunctionEventInvokeConfigsPaginator,
ListFunctionsPaginator,
ListFunctionsByCodeSigningConfigPaginator,
ListLayerVersionsPaginator,
ListLayersPaginator,
ListProvisionedConcurrencyConfigsPaginator,
ListVersionsByFunctionPaginator,
)
client: LambdaClient = Session().client("lambda")
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
list_aliases_paginator: ListAliasesPaginator = client.get_paginator("list_aliases")
list_code_signing_configs_paginator: ListCodeSigningConfigsPaginator = client.get_paginator("list_code_signing_configs")
list_event_source_mappings_paginator: ListEventSourceMappingsPaginator = client.get_paginator("list_event_source_mappings")
list_function_event_invoke_configs_paginator: ListFunctionEventInvokeConfigsPaginator = client.get_paginator("list_function_event_invoke_configs")
list_functions_paginator: ListFunctionsPaginator = client.get_paginator("list_functions")
list_functions_by_code_signing_config_paginator: ListFunctionsByCodeSigningConfigPaginator = client.get_paginator("list_functions_by_code_signing_config")
list_layer_versions_paginator: ListLayerVersionsPaginator = client.get_paginator("list_layer_versions")
list_layers_paginator: ListLayersPaginator = client.get_paginator("list_layers")
list_provisioned_concurrency_configs_paginator: ListProvisionedConcurrencyConfigsPaginator = client.get_paginator("list_provisioned_concurrency_configs")
list_versions_by_function_paginator: ListVersionsByFunctionPaginator = client.get_paginator("list_versions_by_function")
Waiters annotations
mypy_boto3_lambda.waiter module contains type annotations for all waiters.
from boto3.session import Session
from mypy_boto3_lambda import LambdaClient
from mypy_boto3_lambda.waiter import (
FunctionActiveWaiter,
FunctionExistsWaiter,
FunctionUpdatedWaiter,
)
client: LambdaClient = Session().client("lambda")
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
function_active_waiter: FunctionActiveWaiter = client.get_waiter("function_active")
function_exists_waiter: FunctionExistsWaiter = client.get_waiter("function_exists")
function_updated_waiter: FunctionUpdatedWaiter = client.get_waiter("function_updated")
Literals
mypy_boto3_lambda.literals module contains literals extracted from shapes
that can be used in user code for type checking.
from mypy_boto3_lambda.literals import (
ArchitectureType,
CodeSigningPolicyType,
EndPointTypeType,
EventSourcePositionType,
FunctionActiveWaiterName,
FunctionExistsWaiterName,
FunctionResponseTypeType,
FunctionUpdatedWaiterName,
FunctionVersionType,
InvocationTypeType,
LastUpdateStatusReasonCodeType,
LastUpdateStatusType,
ListAliasesPaginatorName,
ListCodeSigningConfigsPaginatorName,
ListEventSourceMappingsPaginatorName,
ListFunctionEventInvokeConfigsPaginatorName,
ListFunctionsByCodeSigningConfigPaginatorName,
ListFunctionsPaginatorName,
ListLayerVersionsPaginatorName,
ListLayersPaginatorName,
ListProvisionedConcurrencyConfigsPaginatorName,
ListVersionsByFunctionPaginatorName,
LogTypeType,
PackageTypeType,
ProvisionedConcurrencyStatusEnumType,
RuntimeType,
SourceAccessTypeType,
StateReasonCodeType,
StateType,
TracingModeType,
ServiceName,
PaginatorName,
WaiterName,
)
def check_value(value: ArchitectureType) -> bool:
...
Typed dictionaries
mypy_boto3_lambda.type_defs module contains structures and shapes assembled
to typed dictionaries for additional type checking.
from mypy_boto3_lambda.type_defs import (
AccountLimitTypeDef,
AccountUsageTypeDef,
AddLayerVersionPermissionRequestRequestTypeDef,
AddLayerVersionPermissionResponseTypeDef,
AddPermissionRequestRequestTypeDef,
AddPermissionResponseTypeDef,
AliasConfigurationResponseMetadataTypeDef,
AliasConfigurationTypeDef,
AliasRoutingConfigurationTypeDef,
AllowedPublishersTypeDef,
CodeSigningConfigTypeDef,
CodeSigningPoliciesTypeDef,
ConcurrencyResponseMetadataTypeDef,
ConcurrencyTypeDef,
CreateAliasRequestRequestTypeDef,
CreateCodeSigningConfigRequestRequestTypeDef,
CreateCodeSigningConfigResponseTypeDef,
CreateEventSourceMappingRequestRequestTypeDef,
CreateFunctionRequestRequestTypeDef,
DeadLetterConfigTypeDef,
DeleteAliasRequestRequestTypeDef,
DeleteCodeSigningConfigRequestRequestTypeDef,
DeleteEventSourceMappingRequestRequestTypeDef,
DeleteFunctionCodeSigningConfigRequestRequestTypeDef,
DeleteFunctionConcurrencyRequestRequestTypeDef,
DeleteFunctionEventInvokeConfigRequestRequestTypeDef,
DeleteFunctionRequestRequestTypeDef,
DeleteLayerVersionRequestRequestTypeDef,
DeleteProvisionedConcurrencyConfigRequestRequestTypeDef,
DestinationConfigTypeDef,
EnvironmentErrorTypeDef,
EnvironmentResponseTypeDef,
EnvironmentTypeDef,
EventSourceMappingConfigurationResponseMetadataTypeDef,
EventSourceMappingConfigurationTypeDef,
FileSystemConfigTypeDef,
FilterCriteriaTypeDef,
FilterTypeDef,
FunctionCodeLocationTypeDef,
FunctionCodeTypeDef,
FunctionConfigurationResponseMetadataTypeDef,
FunctionConfigurationTypeDef,
FunctionEventInvokeConfigResponseMetadataTypeDef,
FunctionEventInvokeConfigTypeDef,
GetAccountSettingsResponseTypeDef,
GetAliasRequestRequestTypeDef,
GetCodeSigningConfigRequestRequestTypeDef,
GetCodeSigningConfigResponseTypeDef,
GetEventSourceMappingRequestRequestTypeDef,
GetFunctionCodeSigningConfigRequestRequestTypeDef,
GetFunctionCodeSigningConfigResponseTypeDef,
GetFunctionConcurrencyRequestRequestTypeDef,
GetFunctionConcurrencyResponseTypeDef,
GetFunctionConfigurationRequestRequestTypeDef,
GetFunctionEventInvokeConfigRequestRequestTypeDef,
GetFunctionRequestRequestTypeDef,
GetFunctionResponseTypeDef,
GetLayerVersionByArnRequestRequestTypeDef,
GetLayerVersionPolicyRequestRequestTypeDef,
GetLayerVersionPolicyResponseTypeDef,
GetLayerVersionRequestRequestTypeDef,
GetLayerVersionResponseTypeDef,
GetPolicyRequestRequestTypeDef,
GetPolicyResponseTypeDef,
GetProvisionedConcurrencyConfigRequestRequestTypeDef,
GetProvisionedConcurrencyConfigResponseTypeDef,
ImageConfigErrorTypeDef,
ImageConfigResponseTypeDef,
ImageConfigTypeDef,
InvocationRequestRequestTypeDef,
InvocationResponseTypeDef,
InvokeAsyncRequestRequestTypeDef,
InvokeAsyncResponseTypeDef,
LayerTypeDef,
LayerVersionContentInputTypeDef,
LayerVersionContentOutputTypeDef,
LayerVersionsListItemTypeDef,
LayersListItemTypeDef,
ListAliasesRequestRequestTypeDef,
ListAliasesResponseTypeDef,
ListCodeSigningConfigsRequestRequestTypeDef,
ListCodeSigningConfigsResponseTypeDef,
ListEventSourceMappingsRequestRequestTypeDef,
ListEventSourceMappingsResponseTypeDef,
ListFunctionEventInvokeConfigsRequestRequestTypeDef,
ListFunctionEventInvokeConfigsResponseTypeDef,
ListFunctionsByCodeSigningConfigRequestRequestTypeDef,
ListFunctionsByCodeSigningConfigResponseTypeDef,
ListFunctionsRequestRequestTypeDef,
ListFunctionsResponseTypeDef,
ListLayerVersionsRequestRequestTypeDef,
ListLayerVersionsResponseTypeDef,
ListLayersRequestRequestTypeDef,
ListLayersResponseTypeDef,
ListProvisionedConcurrencyConfigsRequestRequestTypeDef,
ListProvisionedConcurrencyConfigsResponseTypeDef,
ListTagsRequestRequestTypeDef,
ListTagsResponseTypeDef,
ListVersionsByFunctionRequestRequestTypeDef,
ListVersionsByFunctionResponseTypeDef,
OnFailureTypeDef,
OnSuccessTypeDef,
PaginatorConfigTypeDef,
ProvisionedConcurrencyConfigListItemTypeDef,
PublishLayerVersionRequestRequestTypeDef,
PublishLayerVersionResponseTypeDef,
PublishVersionRequestRequestTypeDef,
PutFunctionCodeSigningConfigRequestRequestTypeDef,
PutFunctionCodeSigningConfigResponseTypeDef,
PutFunctionConcurrencyRequestRequestTypeDef,
PutFunctionEventInvokeConfigRequestRequestTypeDef,
PutProvisionedConcurrencyConfigRequestRequestTypeDef,
PutProvisionedConcurrencyConfigResponseTypeDef,
RemoveLayerVersionPermissionRequestRequestTypeDef,
RemovePermissionRequestRequestTypeDef,
ResponseMetadataTypeDef,
SelfManagedEventSourceTypeDef,
SourceAccessConfigurationTypeDef,
TagResourceRequestRequestTypeDef,
TracingConfigResponseTypeDef,
TracingConfigTypeDef,
UntagResourceRequestRequestTypeDef,
UpdateAliasRequestRequestTypeDef,
UpdateCodeSigningConfigRequestRequestTypeDef,
UpdateCodeSigningConfigResponseTypeDef,
UpdateEventSourceMappingRequestRequestTypeDef,
UpdateFunctionCodeRequestRequestTypeDef,
UpdateFunctionConfigurationRequestRequestTypeDef,
UpdateFunctionEventInvokeConfigRequestRequestTypeDef,
VpcConfigResponseTypeDef,
VpcConfigTypeDef,
WaiterConfigTypeDef,
)
def get_structure() -> AccountLimitTypeDef:
return {
...
}
Versioning
mypy-boto3-lambda version is the same as related boto3 version and follows
PEP 440 format.
Documentation
All type annotations can be found in mypy-boto3-lambda docs
Support and contributing
This package is auto-generated. Please reports any bugs or request new features in mypy-boto3-builder repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mypy-boto3-lambda-1.20.49.tar.gz.
File metadata
- Download URL: mypy-boto3-lambda-1.20.49.tar.gz
- Upload date:
- Size: 33.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
316c233f468dbd73ac53b74088f9c6ed32ca4f7b8ccd188da9f778a574058a8e
|
|
| MD5 |
e0144a93ef5d15568b9943fb01c4f087
|
|
| BLAKE2b-256 |
ebc7791b82c54593b6a38c7e42926fc015fe6daf67540cb3ff1640126b17df13
|
File details
Details for the file mypy_boto3_lambda-1.20.49-py3-none-any.whl.
File metadata
- Download URL: mypy_boto3_lambda-1.20.49-py3-none-any.whl
- Upload date:
- Size: 40.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bec9b7df00e623e81eb2225238615f7cfee862d3e2fc0e336ceaa9e5553dec66
|
|
| MD5 |
dd52cfae7705e70a358e58cd8ae50839
|
|
| BLAKE2b-256 |
f24d1fe0c714617fd799b196b1c7eb12e36226dd6b6f91edaa1120f0f05e2bfd
|