Skip to content

LambdaCore module#

Index > LambdaCore

Auto-generated documentation for LambdaCore type annotations stubs module mypy-boto3-lambda-core.

How to install#

You can generate type annotations for boto3 package locally with mypy-boto3-builder. Use uv for build isolation.

  1. Run mypy-boto3-builder in your package root directory: uvx --with 'boto3==1.43.36' mypy-boto3-builder
  2. Select boto3-stubs AWS SDK.
  3. Add LambdaCore service.
  4. Use provided commands to install generated packages.

VSCode extension#

Add AWS Boto3 extension to your VSCode and run AWS boto3: Quick Start command.

Click Modify and select boto3 common and LambdaCore.

From PyPI with pip#

Install boto3-stubs for LambdaCore service.

# install with boto3 type annotations
python -m pip install 'boto3-stubs[lambda-core]'

# 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-core]'

# standalone installation
python -m pip install mypy-boto3-lambda-core

How to uninstall#

python -m pip uninstall -y mypy-boto3-lambda-core

Usage#

Code samples can be found in Examples.

LambdaCoreClient#

Type annotations and code completion for boto3.client("lambda-core") as LambdaCoreClient boto3 documentation

# LambdaCoreClient usage example

from boto3.session import Session

from mypy_boto3_lambda_core.client import LambdaCoreClient

def get_client() -> LambdaCoreClient:
    return Session().client("lambda-core")

Paginators#

Type annotations and code completion for paginators from boto3.client("lambda-core").get_paginator("...").

# ListNetworkConnectorsPaginator usage example

from boto3.session import Session

from mypy_boto3_lambda_core.paginator import ListNetworkConnectorsPaginator

def get_list_network_connectors_paginator() -> ListNetworkConnectorsPaginator:
    return Session().client("lambda-core").get_paginator("list_network_connectors"))

Literals#

Type annotations for literals used in methods and schema.

# ComputeResourceTypeType usage example

from mypy_boto3_lambda_core.literals import ComputeResourceTypeType

def get_value() -> ComputeResourceTypeType:
    return "MicroVm"

Type definitions#

Type annotations for type definitions used in methods and schema.