<a id="boto3-stubs-lite"></a>
# boto3-stubs-lite
[![PyPI - boto3-stubs-lite](https://img.shields.io/pypi/v/boto3-stubs-lite.svg?color=blue)](https://pypi.org/project/boto3-stubs-lite)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/boto3-stubs-lite.svg?color=blue)](https://pypi.org/project/boto3-stubs-lite)
[![Docs](https://img.shields.io/readthedocs/boto3-stubs.svg?color=blue)](https://youtype.github.io/boto3_stubs_docs/)
[![PyPI - Downloads](https://static.pepy.tech/badge/boto3-stubs-lite)](https://pepy.tech/project/boto3-stubs-lite)
![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
Type annotations for
[boto3 1.35.54](https://boto3.amazonaws.com/v1/documentation/api/1.35.54/index.html)
compatible with [VSCode](https://code.visualstudio.com/),
[PyCharm](https://www.jetbrains.com/pycharm/),
[Emacs](https://www.gnu.org/software/emacs/),
[Sublime Text](https://www.sublimetext.com/),
[mypy](https://github.com/python/mypy),
[pyright](https://github.com/microsoft/pyright) and other tools.
Generated by
[mypy-boto3-builder 8.1.4](https://github.com/youtype/mypy_boto3_builder).
More information can be found in
[boto3-stubs-lite docs](https://youtype.github.io/boto3_stubs_docs/).
See how it helps to find and fix potential bugs:
![boto3-stubs demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
- [boto3-stubs-lite](#boto3-stubs-lite)
- [How to install](#how-to-install)
- [VSCode extension](#vscode-extension)
- [From PyPI with pip](#from-pypi-with-pip)
- [From conda-forge](#from-conda-forge)
- [How to uninstall](#how-to-uninstall)
- [Usage](#usage)
- [VSCode](#vscode)
- [PyCharm](#pycharm)
- [Emacs](#emacs)
- [Sublime Text](#sublime-text)
- [Other IDEs](#other-ides)
- [mypy](#mypy)
- [pyright](#pyright)
- [Explicit type annotations](#explicit-type-annotations)
- [Pylint compatibility](#pylint-compatibility)
- [How it works](#how-it-works)
- [What's new](#what's-new)
- [Implemented features](#implemented-features)
- [Latest changes](#latest-changes)
- [Versioning](#versioning)
- [Thank you](#thank-you)
- [Documentation](#documentation)
- [Support and contributing](#support-and-contributing)
- [Submodules](#submodules)
<a id="how-to-install"></a>
## How to install
<a id="vscode-extension"></a>
### VSCode extension
Add
[AWS Boto3](https://marketplace.visualstudio.com/items?itemName=Boto3typed.boto3-ide)
extension to your VSCode and run `AWS boto3: Quick Start` command.
Click `Auto-discover services` and select services you use in the current
project.
<a id="from-pypi-with-pip"></a>
### From PyPI with pip
Install `boto3-stubs-lite` to add type annotations for `boto3` package.
```bash
# install type annotations only for boto3
python -m pip install boto3-stubs-lite
# install boto3 type annotations
# for ec2, s3, rds, lambda, sqs, dynamo and cloudformation
python -m pip install 'boto3-stubs-lite[essential]'
# or install annotations for services you use
python -m pip install 'boto3-stubs-lite[acm,apigateway]'
# or install annotations in sync with boto3 version
python -m pip install 'boto3-stubs-lite[boto3]'
# or install all-in-one annotations for all services at once
python -m pip install 'boto3-stubs-lite[full]'
```
<a id="from-conda-forge"></a>
### From conda-forge
Add `conda-forge` to your channels with:
```bash
conda config --add channels conda-forge
conda config --set channel_priority strict
```
Once the `conda-forge` channel has been enabled, `boto3-stubs-lite` and
`boto3-stubs-lite-essential` can be installed with:
```bash
conda install boto3-stubs-lite boto3-stubs-lite-essential
```
It is possible to list all of the versions of `boto3-stubs-lite` available on
your platform with:
```bash
conda search boto3-stubs-lite --channel conda-forge
```
<a id="how-to-uninstall"></a>
## How to uninstall
```bash
# uninstall boto3-stubs-lite
python -m pip uninstall -y boto3-stubs-lite
```
<a id="usage"></a>
## Usage
<a id="vscode"></a>
### VSCode
- Install
[Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
- Install
[Pylance extension](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)
- Set `Pylance` as your Python Language Server
- Install `boto3-stubs-lite[essential]` in your environment:
```bash
python -m pip install 'boto3-stubs-lite[essential]'
```
Both type checking and code completion should now work. No explicit type
annotations required, write your `boto3` code as usual.
<a id="pycharm"></a>
### PyCharm
Install `boto3-stubs-lite[essential]` in your environment:
```bash
python -m pip install 'boto3-stubs-lite[essential]'
```
Both type checking and code completion should now work. Explicit type
annotations **are required**.
<a id="emacs"></a>
### Emacs
- Install `boto3-stubs-lite` with services you use in your environment:
```bash
python -m pip install 'boto3-stubs-lite[essential]'
```
- Install [use-package](https://github.com/jwiegley/use-package),
[lsp](https://github.com/emacs-lsp/lsp-mode/),
[company](https://github.com/company-mode/company-mode) and
[flycheck](https://github.com/flycheck/flycheck) packages
- Install [lsp-pyright](https://github.com/emacs-lsp/lsp-pyright) package
```elisp
(use-package lsp-pyright
:ensure t
:hook (python-mode . (lambda ()
(require 'lsp-pyright)
(lsp))) ; or lsp-deferred
:init (when (executable-find "python3")
(setq lsp-pyright-python-executable-cmd "python3"))
)
```
- Make sure emacs uses the environment where you have installed
`boto3-stubs-lite`
Type checking should now work. No explicit type annotations required, write
your `boto3` code as usual.
<a id="sublime-text"></a>
### Sublime Text
- Install `boto3-stubs-lite[essential]` with services you use in your
environment:
```bash
python -m pip install 'boto3-stubs-lite[essential]'
```
- Install [LSP-pyright](https://github.com/sublimelsp/LSP-pyright) package
Type checking should now work. No explicit type annotations required, write
your `boto3` code as usual.
<a id="other-ides"></a>
### Other IDEs
Not tested, but as long as your IDE supports `mypy` or `pyright`, everything
should work.
<a id="mypy"></a>
### mypy
- Install `mypy`: `python -m pip install mypy`
- Install `boto3-stubs-lite[essential]` in your environment:
```bash
python -m pip install 'boto3-stubs-lite[essential]'
```
Type checking should now work. No explicit type annotations required, write
your `boto3` code as usual.
<a id="pyright"></a>
### pyright
- Install `pyright`: `npm i -g pyright`
- Install `boto3-stubs-lite[essential]` in your environment:
```bash
python -m pip install 'boto3-stubs-lite[essential]'
```
Optionally, you can install `boto3-stubs-lite` to `typings` directory.
Type checking should now work. No explicit type annotations required, write
your `boto3` code as usual.
<a id="explicit-type-annotations"></a>
### Explicit type annotations
To speed up type checking and code completion, you can set types explicitly.
```python
import boto3
from boto3.session import Session
from mypy_boto3_ec2.client import EC2Client
from mypy_boto3_ec2.service_resource import EC2ServiceResource
from mypy_boto3_ec2.waiter import BundleTaskCompleteWaiter
from mypy_boto3_ec2.paginator import DescribeVolumesPaginator
session = Session(region_name="us-west-1")
ec2_client: EC2Client = boto3.client("ec2", region_name="us-west-1")
ec2_resource: EC2ServiceResource = session.resource("ec2")
bundle_task_complete_waiter: BundleTaskCompleteWaiter = ec2_client.get_waiter(
"bundle_task_complete"
)
describe_volumes_paginator: DescribeVolumesPaginator = ec2_client.get_paginator("describe_volumes")
```
<a id="pylint-compatibility"></a>
### Pylint compatibility
It is totally safe to use `TYPE_CHECKING` flag in order to avoid `boto3-stubs`
dependency in production. However, there is an issue in `pylint` that it
complains about undefined variables. To fix it, set all types to `object` in
non-`TYPE_CHECKING` mode.
```python
import boto3
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from mypy_boto3_ec2 import EC2Client, EC2ServiceResource
from mypy_boto3_ec2.waiters import BundleTaskCompleteWaiter
from mypy_boto3_ec2.paginators import DescribeVolumesPaginator
else:
EC2Client = object
EC2ServiceResource = object
BundleTaskCompleteWaiter = object
DescribeVolumesPaginator = object
...
```
<a id="how-it-works"></a>
## How it works
Fully automated
[mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder) carefully
generates type annotations for each service, patiently waiting for `boto3`
updates. It delivers drop-in type annotations for you and makes sure that:
- All available `boto3` services are covered.
- Each public class and method of every `boto3` service gets valid type
annotations extracted from `botocore` schemas.
- Type annotations include up-to-date documentation.
- Link to documentation is provided for every method.
- Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.
<a id="what's-new"></a>
## What's new
<a id="implemented-features"></a>
### Implemented features
- Fully type annotated `boto3`, `botocore`, `aiobotocore` and `aioboto3`
libraries
- `mypy`, `pyright`, `VSCode`, `PyCharm`, `Sublime Text` and `Emacs`
compatibility
- `Client`, `ServiceResource`, `Resource`, `Waiter` `Paginator` type
annotations for each service
- Generated `TypeDefs` for each service
- Generated `Literals` for each service
- Auto discovery of types for `boto3.client` and `boto3.resource` calls
- Auto discovery of types for `session.client` and `session.resource` calls
- Auto discovery of types for `client.get_waiter` and `client.get_paginator`
calls
- Auto discovery of types for `ServiceResource` and `Resource` collections
- Auto discovery of types for `aiobotocore.Session.create_client` calls
<a id="latest-changes"></a>
### Latest changes
Builder changelog can be found in
[Releases](https://github.com/youtype/mypy_boto3_builder/releases).
<a id="versioning"></a>
## Versioning
`boto3-stubs-lite` version is the same as related `boto3` version and follows
[PEP 440](https://www.python.org/dev/peps/pep-0440/) format.
<a id="thank-you"></a>
## Thank you
- [Allie Fitter](https://github.com/alliefitter) for
[boto3-type-annotations](https://pypi.org/project/boto3-type-annotations/),
this package is based on top of his work
- [black](https://github.com/psf/black) developers for an awesome formatting
tool
- [Timothy Edmund Crosley](https://github.com/timothycrosley) for
[isort](https://github.com/PyCQA/isort) and how flexible it is
- [mypy](https://github.com/python/mypy) developers for doing all dirty work
for us
- [pyright](https://github.com/microsoft/pyright) team for the new era of typed
Python
<a id="documentation"></a>
## Documentation
All services type annotations can be found in
[boto3 docs](https://youtype.github.io/boto3_stubs_docs/)
<a id="support-and-contributing"></a>
## Support and contributing
This package is auto-generated. Please reports any bugs or request new features
in [mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder/issues/)
repository.
<a id="submodules"></a>
## Submodules
- `boto3-stubs-lite[full]` - Type annotations for all 390 services in one
package (recommended).
- `boto3-stubs-lite[all]` - Type annotations for all 390 services in separate
packages.
- `boto3-stubs-lite[essential]` - Type annotations for
[CloudFormation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudformation/),
[DynamoDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/),
[EC2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ec2/),
[Lambda](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda/),
[RDS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rds/),
[S3](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3/) and
[SQS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sqs/) services.
- `boto3-stubs-lite[boto3]` - Install annotations in sync with `boto3` version.
- `boto3-stubs-lite[accessanalyzer]` - Type annotations for
[AccessAnalyzer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_accessanalyzer/)
service.
- `boto3-stubs-lite[account]` - Type annotations for
[Account](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_account/)
service.
- `boto3-stubs-lite[acm]` - Type annotations for
[ACM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_acm/) service.
- `boto3-stubs-lite[acm-pca]` - Type annotations for
[ACMPCA](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_acm_pca/)
service.
- `boto3-stubs-lite[amp]` - Type annotations for
[PrometheusService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amp/)
service.
- `boto3-stubs-lite[amplify]` - Type annotations for
[Amplify](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amplify/)
service.
- `boto3-stubs-lite[amplifybackend]` - Type annotations for
[AmplifyBackend](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amplifybackend/)
service.
- `boto3-stubs-lite[amplifyuibuilder]` - Type annotations for
[AmplifyUIBuilder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amplifyuibuilder/)
service.
- `boto3-stubs-lite[apigateway]` - Type annotations for
[APIGateway](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apigateway/)
service.
- `boto3-stubs-lite[apigatewaymanagementapi]` - Type annotations for
[ApiGatewayManagementApi](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apigatewaymanagementapi/)
service.
- `boto3-stubs-lite[apigatewayv2]` - Type annotations for
[ApiGatewayV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apigatewayv2/)
service.
- `boto3-stubs-lite[appconfig]` - Type annotations for
[AppConfig](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/)
service.
- `boto3-stubs-lite[appconfigdata]` - Type annotations for
[AppConfigData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/)
service.
- `boto3-stubs-lite[appfabric]` - Type annotations for
[AppFabric](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appfabric/)
service.
- `boto3-stubs-lite[appflow]` - Type annotations for
[Appflow](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appflow/)
service.
- `boto3-stubs-lite[appintegrations]` - Type annotations for
[AppIntegrationsService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appintegrations/)
service.
- `boto3-stubs-lite[application-autoscaling]` - Type annotations for
[ApplicationAutoScaling](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_application_autoscaling/)
service.
- `boto3-stubs-lite[application-insights]` - Type annotations for
[ApplicationInsights](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_application_insights/)
service.
- `boto3-stubs-lite[application-signals]` - Type annotations for
[CloudWatchApplicationSignals](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_application_signals/)
service.
- `boto3-stubs-lite[applicationcostprofiler]` - Type annotations for
[ApplicationCostProfiler](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_applicationcostprofiler/)
service.
- `boto3-stubs-lite[appmesh]` - Type annotations for
[AppMesh](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appmesh/)
service.
- `boto3-stubs-lite[apprunner]` - Type annotations for
[AppRunner](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apprunner/)
service.
- `boto3-stubs-lite[appstream]` - Type annotations for
[AppStream](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appstream/)
service.
- `boto3-stubs-lite[appsync]` - Type annotations for
[AppSync](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appsync/)
service.
- `boto3-stubs-lite[apptest]` - Type annotations for
[MainframeModernizationApplicationTesting](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apptest/)
service.
- `boto3-stubs-lite[arc-zonal-shift]` - Type annotations for
[ARCZonalShift](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_arc_zonal_shift/)
service.
- `boto3-stubs-lite[artifact]` - Type annotations for
[Artifact](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_artifact/)
service.
- `boto3-stubs-lite[athena]` - Type annotations for
[Athena](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/)
service.
- `boto3-stubs-lite[auditmanager]` - Type annotations for
[AuditManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_auditmanager/)
service.
- `boto3-stubs-lite[autoscaling]` - Type annotations for
[AutoScaling](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_autoscaling/)
service.
- `boto3-stubs-lite[autoscaling-plans]` - Type annotations for
[AutoScalingPlans](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_autoscaling_plans/)
service.
- `boto3-stubs-lite[b2bi]` - Type annotations for
[B2BI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_b2bi/) service.
- `boto3-stubs-lite[backup]` - Type annotations for
[Backup](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_backup/)
service.
- `boto3-stubs-lite[backup-gateway]` - Type annotations for
[BackupGateway](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_backup_gateway/)
service.
- `boto3-stubs-lite[batch]` - Type annotations for
[Batch](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_batch/)
service.
- `boto3-stubs-lite[bcm-data-exports]` - Type annotations for
[BillingandCostManagementDataExports](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bcm_data_exports/)
service.
- `boto3-stubs-lite[bedrock]` - Type annotations for
[Bedrock](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock/)
service.
- `boto3-stubs-lite[bedrock-agent]` - Type annotations for
[AgentsforBedrock](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock_agent/)
service.
- `boto3-stubs-lite[bedrock-agent-runtime]` - Type annotations for
[AgentsforBedrockRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock_agent_runtime/)
service.
- `boto3-stubs-lite[bedrock-runtime]` - Type annotations for
[BedrockRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock_runtime/)
service.
- `boto3-stubs-lite[billingconductor]` - Type annotations for
[BillingConductor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_billingconductor/)
service.
- `boto3-stubs-lite[braket]` - Type annotations for
[Braket](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_braket/)
service.
- `boto3-stubs-lite[budgets]` - Type annotations for
[Budgets](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_budgets/)
service.
- `boto3-stubs-lite[ce]` - Type annotations for
[CostExplorer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ce/)
service.
- `boto3-stubs-lite[chatbot]` - Type annotations for
[Chatbot](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chatbot/)
service.
- `boto3-stubs-lite[chime]` - Type annotations for
[Chime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime/)
service.
- `boto3-stubs-lite[chime-sdk-identity]` - Type annotations for
[ChimeSDKIdentity](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_identity/)
service.
- `boto3-stubs-lite[chime-sdk-media-pipelines]` - Type annotations for
[ChimeSDKMediaPipelines](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_media_pipelines/)
service.
- `boto3-stubs-lite[chime-sdk-meetings]` - Type annotations for
[ChimeSDKMeetings](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_meetings/)
service.
- `boto3-stubs-lite[chime-sdk-messaging]` - Type annotations for
[ChimeSDKMessaging](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_messaging/)
service.
- `boto3-stubs-lite[chime-sdk-voice]` - Type annotations for
[ChimeSDKVoice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_voice/)
service.
- `boto3-stubs-lite[cleanrooms]` - Type annotations for
[CleanRoomsService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cleanrooms/)
service.
- `boto3-stubs-lite[cleanroomsml]` - Type annotations for
[CleanRoomsML](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cleanroomsml/)
service.
- `boto3-stubs-lite[cloud9]` - Type annotations for
[Cloud9](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloud9/)
service.
- `boto3-stubs-lite[cloudcontrol]` - Type annotations for
[CloudControlApi](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudcontrol/)
service.
- `boto3-stubs-lite[clouddirectory]` - Type annotations for
[CloudDirectory](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_clouddirectory/)
service.
- `boto3-stubs-lite[cloudformation]` - Type annotations for
[CloudFormation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudformation/)
service.
- `boto3-stubs-lite[cloudfront]` - Type annotations for
[CloudFront](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudfront/)
service.
- `boto3-stubs-lite[cloudfront-keyvaluestore]` - Type annotations for
[CloudFrontKeyValueStore](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudfront_keyvaluestore/)
service.
- `boto3-stubs-lite[cloudhsm]` - Type annotations for
[CloudHSM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudhsm/)
service.
- `boto3-stubs-lite[cloudhsmv2]` - Type annotations for
[CloudHSMV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudhsmv2/)
service.
- `boto3-stubs-lite[cloudsearch]` - Type annotations for
[CloudSearch](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudsearch/)
service.
- `boto3-stubs-lite[cloudsearchdomain]` - Type annotations for
[CloudSearchDomain](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudsearchdomain/)
service.
- `boto3-stubs-lite[cloudtrail]` - Type annotations for
[CloudTrail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudtrail/)
service.
- `boto3-stubs-lite[cloudtrail-data]` - Type annotations for
[CloudTrailDataService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudtrail_data/)
service.
- `boto3-stubs-lite[cloudwatch]` - Type annotations for
[CloudWatch](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudwatch/)
service.
- `boto3-stubs-lite[codeartifact]` - Type annotations for
[CodeArtifact](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeartifact/)
service.
- `boto3-stubs-lite[codebuild]` - Type annotations for
[CodeBuild](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codebuild/)
service.
- `boto3-stubs-lite[codecatalyst]` - Type annotations for
[CodeCatalyst](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codecatalyst/)
service.
- `boto3-stubs-lite[codecommit]` - Type annotations for
[CodeCommit](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codecommit/)
service.
- `boto3-stubs-lite[codeconnections]` - Type annotations for
[CodeConnections](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeconnections/)
service.
- `boto3-stubs-lite[codedeploy]` - Type annotations for
[CodeDeploy](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codedeploy/)
service.
- `boto3-stubs-lite[codeguru-reviewer]` - Type annotations for
[CodeGuruReviewer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeguru_reviewer/)
service.
- `boto3-stubs-lite[codeguru-security]` - Type annotations for
[CodeGuruSecurity](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeguru_security/)
service.
- `boto3-stubs-lite[codeguruprofiler]` - Type annotations for
[CodeGuruProfiler](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeguruprofiler/)
service.
- `boto3-stubs-lite[codepipeline]` - Type annotations for
[CodePipeline](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codepipeline/)
service.
- `boto3-stubs-lite[codestar-connections]` - Type annotations for
[CodeStarconnections](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codestar_connections/)
service.
- `boto3-stubs-lite[codestar-notifications]` - Type annotations for
[CodeStarNotifications](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codestar_notifications/)
service.
- `boto3-stubs-lite[cognito-identity]` - Type annotations for
[CognitoIdentity](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cognito_identity/)
service.
- `boto3-stubs-lite[cognito-idp]` - Type annotations for
[CognitoIdentityProvider](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cognito_idp/)
service.
- `boto3-stubs-lite[cognito-sync]` - Type annotations for
[CognitoSync](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cognito_sync/)
service.
- `boto3-stubs-lite[comprehend]` - Type annotations for
[Comprehend](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_comprehend/)
service.
- `boto3-stubs-lite[comprehendmedical]` - Type annotations for
[ComprehendMedical](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_comprehendmedical/)
service.
- `boto3-stubs-lite[compute-optimizer]` - Type annotations for
[ComputeOptimizer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_compute_optimizer/)
service.
- `boto3-stubs-lite[config]` - Type annotations for
[ConfigService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_config/)
service.
- `boto3-stubs-lite[connect]` - Type annotations for
[Connect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connect/)
service.
- `boto3-stubs-lite[connect-contact-lens]` - Type annotations for
[ConnectContactLens](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connect_contact_lens/)
service.
- `boto3-stubs-lite[connectcampaigns]` - Type annotations for
[ConnectCampaignService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcampaigns/)
service.
- `boto3-stubs-lite[connectcases]` - Type annotations for
[ConnectCases](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/)
service.
- `boto3-stubs-lite[connectparticipant]` - Type annotations for
[ConnectParticipant](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectparticipant/)
service.
- `boto3-stubs-lite[controlcatalog]` - Type annotations for
[ControlCatalog](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_controlcatalog/)
service.
- `boto3-stubs-lite[controltower]` - Type annotations for
[ControlTower](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_controltower/)
service.
- `boto3-stubs-lite[cost-optimization-hub]` - Type annotations for
[CostOptimizationHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cost_optimization_hub/)
service.
- `boto3-stubs-lite[cur]` - Type annotations for
[CostandUsageReportService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cur/)
service.
- `boto3-stubs-lite[customer-profiles]` - Type annotations for
[CustomerProfiles](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_customer_profiles/)
service.
- `boto3-stubs-lite[databrew]` - Type annotations for
[GlueDataBrew](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_databrew/)
service.
- `boto3-stubs-lite[dataexchange]` - Type annotations for
[DataExchange](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dataexchange/)
service.
- `boto3-stubs-lite[datapipeline]` - Type annotations for
[DataPipeline](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_datapipeline/)
service.
- `boto3-stubs-lite[datasync]` - Type annotations for
[DataSync](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_datasync/)
service.
- `boto3-stubs-lite[datazone]` - Type annotations for
[DataZone](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_datazone/)
service.
- `boto3-stubs-lite[dax]` - Type annotations for
[DAX](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dax/) service.
- `boto3-stubs-lite[deadline]` - Type annotations for
[DeadlineCloud](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_deadline/)
service.
- `boto3-stubs-lite[detective]` - Type annotations for
[Detective](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_detective/)
service.
- `boto3-stubs-lite[devicefarm]` - Type annotations for
[DeviceFarm](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_devicefarm/)
service.
- `boto3-stubs-lite[devops-guru]` - Type annotations for
[DevOpsGuru](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_devops_guru/)
service.
- `boto3-stubs-lite[directconnect]` - Type annotations for
[DirectConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_directconnect/)
service.
- `boto3-stubs-lite[discovery]` - Type annotations for
[ApplicationDiscoveryService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_discovery/)
service.
- `boto3-stubs-lite[dlm]` - Type annotations for
[DLM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dlm/) service.
- `boto3-stubs-lite[dms]` - Type annotations for
[DatabaseMigrationService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dms/)
service.
- `boto3-stubs-lite[docdb]` - Type annotations for
[DocDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_docdb/)
service.
- `boto3-stubs-lite[docdb-elastic]` - Type annotations for
[DocDBElastic](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_docdb_elastic/)
service.
- `boto3-stubs-lite[drs]` - Type annotations for
[Drs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_drs/) service.
- `boto3-stubs-lite[ds]` - Type annotations for
[DirectoryService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ds/)
service.
- `boto3-stubs-lite[ds-data]` - Type annotations for
[DirectoryServiceData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ds_data/)
service.
- `boto3-stubs-lite[dynamodb]` - Type annotations for
[DynamoDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/)
service.
- `boto3-stubs-lite[dynamodbstreams]` - Type annotations for
[DynamoDBStreams](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodbstreams/)
service.
- `boto3-stubs-lite[ebs]` - Type annotations for
[EBS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ebs/) service.
- `boto3-stubs-lite[ec2]` - Type annotations for
[EC2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ec2/) service.
- `boto3-stubs-lite[ec2-instance-connect]` - Type annotations for
[EC2InstanceConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ec2_instance_connect/)
service.
- `boto3-stubs-lite[ecr]` - Type annotations for
[ECR](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ecr/) service.
- `boto3-stubs-lite[ecr-public]` - Type annotations for
[ECRPublic](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ecr_public/)
service.
- `boto3-stubs-lite[ecs]` - Type annotations for
[ECS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ecs/) service.
- `boto3-stubs-lite[efs]` - Type annotations for
[EFS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_efs/) service.
- `boto3-stubs-lite[eks]` - Type annotations for
[EKS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/) service.
- `boto3-stubs-lite[eks-auth]` - Type annotations for
[EKSAuth](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks_auth/)
service.
- `boto3-stubs-lite[elastic-inference]` - Type annotations for
[ElasticInference](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elastic_inference/)
service.
- `boto3-stubs-lite[elasticache]` - Type annotations for
[ElastiCache](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elasticache/)
service.
- `boto3-stubs-lite[elasticbeanstalk]` - Type annotations for
[ElasticBeanstalk](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elasticbeanstalk/)
service.
- `boto3-stubs-lite[elastictranscoder]` - Type annotations for
[ElasticTranscoder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elastictranscoder/)
service.
- `boto3-stubs-lite[elb]` - Type annotations for
[ElasticLoadBalancing](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elb/)
service.
- `boto3-stubs-lite[elbv2]` - Type annotations for
[ElasticLoadBalancingv2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elbv2/)
service.
- `boto3-stubs-lite[emr]` - Type annotations for
[EMR](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_emr/) service.
- `boto3-stubs-lite[emr-containers]` - Type annotations for
[EMRContainers](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_emr_containers/)
service.
- `boto3-stubs-lite[emr-serverless]` - Type annotations for
[EMRServerless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_emr_serverless/)
service.
- `boto3-stubs-lite[entityresolution]` - Type annotations for
[EntityResolution](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_entityresolution/)
service.
- `boto3-stubs-lite[es]` - Type annotations for
[ElasticsearchService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_es/)
service.
- `boto3-stubs-lite[events]` - Type annotations for
[EventBridge](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_events/)
service.
- `boto3-stubs-lite[evidently]` - Type annotations for
[CloudWatchEvidently](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_evidently/)
service.
- `boto3-stubs-lite[finspace]` - Type annotations for
[Finspace](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_finspace/)
service.
- `boto3-stubs-lite[finspace-data]` - Type annotations for
[FinSpaceData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_finspace_data/)
service.
- `boto3-stubs-lite[firehose]` - Type annotations for
[Firehose](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_firehose/)
service.
- `boto3-stubs-lite[fis]` - Type annotations for
[FIS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_fis/) service.
- `boto3-stubs-lite[fms]` - Type annotations for
[FMS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_fms/) service.
- `boto3-stubs-lite[forecast]` - Type annotations for
[ForecastService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_forecast/)
service.
- `boto3-stubs-lite[forecastquery]` - Type annotations for
[ForecastQueryService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_forecastquery/)
service.
- `boto3-stubs-lite[frauddetector]` - Type annotations for
[FraudDetector](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_frauddetector/)
service.
- `boto3-stubs-lite[freetier]` - Type annotations for
[FreeTier](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_freetier/)
service.
- `boto3-stubs-lite[fsx]` - Type annotations for
[FSx](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_fsx/) service.
- `boto3-stubs-lite[gamelift]` - Type annotations for
[GameLift](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_gamelift/)
service.
- `boto3-stubs-lite[geo-maps]` - Type annotations for
[LocationServiceMapsV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/)
service.
- `boto3-stubs-lite[geo-places]` - Type annotations for
[LocationServicePlacesV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_places/)
service.
- `boto3-stubs-lite[geo-routes]` - Type annotations for
[LocationServiceRoutesV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_routes/)
service.
- `boto3-stubs-lite[glacier]` - Type annotations for
[Glacier](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_glacier/)
service.
- `boto3-stubs-lite[globalaccelerator]` - Type annotations for
[GlobalAccelerator](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_globalaccelerator/)
service.
- `boto3-stubs-lite[glue]` - Type annotations for
[Glue](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_glue/) service.
- `boto3-stubs-lite[grafana]` - Type annotations for
[ManagedGrafana](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_grafana/)
service.
- `boto3-stubs-lite[greengrass]` - Type annotations for
[Greengrass](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_greengrass/)
service.
- `boto3-stubs-lite[greengrassv2]` - Type annotations for
[GreengrassV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_greengrassv2/)
service.
- `boto3-stubs-lite[groundstation]` - Type annotations for
[GroundStation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_groundstation/)
service.
- `boto3-stubs-lite[guardduty]` - Type annotations for
[GuardDuty](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_guardduty/)
service.
- `boto3-stubs-lite[health]` - Type annotations for
[Health](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_health/)
service.
- `boto3-stubs-lite[healthlake]` - Type annotations for
[HealthLake](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_healthlake/)
service.
- `boto3-stubs-lite[iam]` - Type annotations for
[IAM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iam/) service.
- `boto3-stubs-lite[identitystore]` - Type annotations for
[IdentityStore](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_identitystore/)
service.
- `boto3-stubs-lite[imagebuilder]` - Type annotations for
[Imagebuilder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_imagebuilder/)
service.
- `boto3-stubs-lite[importexport]` - Type annotations for
[ImportExport](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_importexport/)
service.
- `boto3-stubs-lite[inspector]` - Type annotations for
[Inspector](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_inspector/)
service.
- `boto3-stubs-lite[inspector-scan]` - Type annotations for
[Inspectorscan](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_inspector_scan/)
service.
- `boto3-stubs-lite[inspector2]` - Type annotations for
[Inspector2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_inspector2/)
service.
- `boto3-stubs-lite[internetmonitor]` - Type annotations for
[CloudWatchInternetMonitor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_internetmonitor/)
service.
- `boto3-stubs-lite[iot]` - Type annotations for
[IoT](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot/) service.
- `boto3-stubs-lite[iot-data]` - Type annotations for
[IoTDataPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot_data/)
service.
- `boto3-stubs-lite[iot-jobs-data]` - Type annotations for
[IoTJobsDataPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot_jobs_data/)
service.
- `boto3-stubs-lite[iot1click-devices]` - Type annotations for
[IoT1ClickDevicesService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot1click_devices/)
service.
- `boto3-stubs-lite[iot1click-projects]` - Type annotations for
[IoT1ClickProjects](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot1click_projects/)
service.
- `boto3-stubs-lite[iotanalytics]` - Type annotations for
[IoTAnalytics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotanalytics/)
service.
- `boto3-stubs-lite[iotdeviceadvisor]` - Type annotations for
[IoTDeviceAdvisor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotdeviceadvisor/)
service.
- `boto3-stubs-lite[iotevents]` - Type annotations for
[IoTEvents](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotevents/)
service.
- `boto3-stubs-lite[iotevents-data]` - Type annotations for
[IoTEventsData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotevents_data/)
service.
- `boto3-stubs-lite[iotfleethub]` - Type annotations for
[IoTFleetHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotfleethub/)
service.
- `boto3-stubs-lite[iotfleetwise]` - Type annotations for
[IoTFleetWise](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotfleetwise/)
service.
- `boto3-stubs-lite[iotsecuretunneling]` - Type annotations for
[IoTSecureTunneling](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotsecuretunneling/)
service.
- `boto3-stubs-lite[iotsitewise]` - Type annotations for
[IoTSiteWise](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotsitewise/)
service.
- `boto3-stubs-lite[iotthingsgraph]` - Type annotations for
[IoTThingsGraph](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotthingsgraph/)
service.
- `boto3-stubs-lite[iottwinmaker]` - Type annotations for
[IoTTwinMaker](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iottwinmaker/)
service.
- `boto3-stubs-lite[iotwireless]` - Type annotations for
[IoTWireless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotwireless/)
service.
- `boto3-stubs-lite[ivs]` - Type annotations for
[IVS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ivs/) service.
- `boto3-stubs-lite[ivs-realtime]` - Type annotations for
[Ivsrealtime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ivs_realtime/)
service.
- `boto3-stubs-lite[ivschat]` - Type annotations for
[Ivschat](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ivschat/)
service.
- `boto3-stubs-lite[kafka]` - Type annotations for
[Kafka](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kafka/)
service.
- `boto3-stubs-lite[kafkaconnect]` - Type annotations for
[KafkaConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kafkaconnect/)
service.
- `boto3-stubs-lite[kendra]` - Type annotations for
[Kendra](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kendra/)
service.
- `boto3-stubs-lite[kendra-ranking]` - Type annotations for
[KendraRanking](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kendra_ranking/)
service.
- `boto3-stubs-lite[keyspaces]` - Type annotations for
[Keyspaces](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_keyspaces/)
service.
- `boto3-stubs-lite[kinesis]` - Type annotations for
[Kinesis](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/)
service.
- `boto3-stubs-lite[kinesis-video-archived-media]` - Type annotations for
[KinesisVideoArchivedMedia](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis_video_archived_media/)
service.
- `boto3-stubs-lite[kinesis-video-media]` - Type annotations for
[KinesisVideoMedia](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis_video_media/)
service.
- `boto3-stubs-lite[kinesis-video-signaling]` - Type annotations for
[KinesisVideoSignalingChannels](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis_video_signaling/)
service.
- `boto3-stubs-lite[kinesis-video-webrtc-storage]` - Type annotations for
[KinesisVideoWebRTCStorage](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis_video_webrtc_storage/)
service.
- `boto3-stubs-lite[kinesisanalytics]` - Type annotations for
[KinesisAnalytics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesisanalytics/)
service.
- `boto3-stubs-lite[kinesisanalyticsv2]` - Type annotations for
[KinesisAnalyticsV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesisanalyticsv2/)
service.
- `boto3-stubs-lite[kinesisvideo]` - Type annotations for
[KinesisVideo](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesisvideo/)
service.
- `boto3-stubs-lite[kms]` - Type annotations for
[KMS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kms/) service.
- `boto3-stubs-lite[lakeformation]` - Type annotations for
[LakeFormation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lakeformation/)
service.
- `boto3-stubs-lite[lambda]` - Type annotations for
[Lambda](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda/)
service.
- `boto3-stubs-lite[launch-wizard]` - Type annotations for
[LaunchWizard](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_launch_wizard/)
service.
- `boto3-stubs-lite[lex-models]` - Type annotations for
[LexModelBuildingService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lex_models/)
service.
- `boto3-stubs-lite[lex-runtime]` - Type annotations for
[LexRuntimeService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lex_runtime/)
service.
- `boto3-stubs-lite[lexv2-models]` - Type annotations for
[LexModelsV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lexv2_models/)
service.
- `boto3-stubs-lite[lexv2-runtime]` - Type annotations for
[LexRuntimeV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lexv2_runtime/)
service.
- `boto3-stubs-lite[license-manager]` - Type annotations for
[LicenseManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_license_manager/)
service.
- `boto3-stubs-lite[license-manager-linux-subscriptions]` - Type annotations
for
[LicenseManagerLinuxSubscriptions](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_license_manager_linux_subscriptions/)
service.
- `boto3-stubs-lite[license-manager-user-subscriptions]` - Type annotations for
[LicenseManagerUserSubscriptions](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_license_manager_user_subscriptions/)
service.
- `boto3-stubs-lite[lightsail]` - Type annotations for
[Lightsail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lightsail/)
service.
- `boto3-stubs-lite[location]` - Type annotations for
[LocationService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_location/)
service.
- `boto3-stubs-lite[logs]` - Type annotations for
[CloudWatchLogs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_logs/)
service.
- `boto3-stubs-lite[lookoutequipment]` - Type annotations for
[LookoutEquipment](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lookoutequipment/)
service.
- `boto3-stubs-lite[lookoutmetrics]` - Type annotations for
[LookoutMetrics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lookoutmetrics/)
service.
- `boto3-stubs-lite[lookoutvision]` - Type annotations for
[LookoutforVision](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lookoutvision/)
service.
- `boto3-stubs-lite[m2]` - Type annotations for
[MainframeModernization](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_m2/)
service.
- `boto3-stubs-lite[machinelearning]` - Type annotations for
[MachineLearning](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_machinelearning/)
service.
- `boto3-stubs-lite[macie2]` - Type annotations for
[Macie2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_macie2/)
service.
- `boto3-stubs-lite[mailmanager]` - Type annotations for
[MailManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mailmanager/)
service.
- `boto3-stubs-lite[managedblockchain]` - Type annotations for
[ManagedBlockchain](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_managedblockchain/)
service.
- `boto3-stubs-lite[managedblockchain-query]` - Type annotations for
[ManagedBlockchainQuery](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_managedblockchain_query/)
service.
- `boto3-stubs-lite[marketplace-agreement]` - Type annotations for
[AgreementService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_agreement/)
service.
- `boto3-stubs-lite[marketplace-catalog]` - Type annotations for
[MarketplaceCatalog](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_catalog/)
service.
- `boto3-stubs-lite[marketplace-deployment]` - Type annotations for
[MarketplaceDeploymentService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_deployment/)
service.
- `boto3-stubs-lite[marketplace-entitlement]` - Type annotations for
[MarketplaceEntitlementService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_entitlement/)
service.
- `boto3-stubs-lite[marketplace-reporting]` - Type annotations for
[MarketplaceReportingService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_reporting/)
service.
- `boto3-stubs-lite[marketplacecommerceanalytics]` - Type annotations for
[MarketplaceCommerceAnalytics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplacecommerceanalytics/)
service.
- `boto3-stubs-lite[mediaconnect]` - Type annotations for
[MediaConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediaconnect/)
service.
- `boto3-stubs-lite[mediaconvert]` - Type annotations for
[MediaConvert](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediaconvert/)
service.
- `boto3-stubs-lite[medialive]` - Type annotations for
[MediaLive](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_medialive/)
service.
- `boto3-stubs-lite[mediapackage]` - Type annotations for
[MediaPackage](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediapackage/)
service.
- `boto3-stubs-lite[mediapackage-vod]` - Type annotations for
[MediaPackageVod](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediapackage_vod/)
service.
- `boto3-stubs-lite[mediapackagev2]` - Type annotations for
[Mediapackagev2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediapackagev2/)
service.
- `boto3-stubs-lite[mediastore]` - Type annotations for
[MediaStore](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediastore/)
service.
- `boto3-stubs-lite[mediastore-data]` - Type annotations for
[MediaStoreData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediastore_data/)
service.
- `boto3-stubs-lite[mediatailor]` - Type annotations for
[MediaTailor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediatailor/)
service.
- `boto3-stubs-lite[medical-imaging]` - Type annotations for
[HealthImaging](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_medical_imaging/)
service.
- `boto3-stubs-lite[memorydb]` - Type annotations for
[MemoryDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_memorydb/)
service.
- `boto3-stubs-lite[meteringmarketplace]` - Type annotations for
[MarketplaceMetering](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_meteringmarketplace/)
service.
- `boto3-stubs-lite[mgh]` - Type annotations for
[MigrationHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mgh/)
service.
- `boto3-stubs-lite[mgn]` - Type annotations for
[Mgn](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mgn/) service.
- `boto3-stubs-lite[migration-hub-refactor-spaces]` - Type annotations for
[MigrationHubRefactorSpaces](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migration_hub_refactor_spaces/)
service.
- `boto3-stubs-lite[migrationhub-config]` - Type annotations for
[MigrationHubConfig](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migrationhub_config/)
service.
- `boto3-stubs-lite[migrationhuborchestrator]` - Type annotations for
[MigrationHubOrchestrator](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migrationhuborchestrator/)
service.
- `boto3-stubs-lite[migrationhubstrategy]` - Type annotations for
[MigrationHubStrategyRecommendations](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migrationhubstrategy/)
service.
- `boto3-stubs-lite[mq]` - Type annotations for
[MQ](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mq/) service.
- `boto3-stubs-lite[mturk]` - Type annotations for
[MTurk](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mturk/)
service.
- `boto3-stubs-lite[mwaa]` - Type annotations for
[MWAA](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mwaa/) service.
- `boto3-stubs-lite[neptune]` - Type annotations for
[Neptune](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_neptune/)
service.
- `boto3-stubs-lite[neptune-graph]` - Type annotations for
[NeptuneGraph](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_neptune_graph/)
service.
- `boto3-stubs-lite[neptunedata]` - Type annotations for
[NeptuneData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_neptunedata/)
service.
- `boto3-stubs-lite[network-firewall]` - Type annotations for
[NetworkFirewall](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_network_firewall/)
service.
- `boto3-stubs-lite[networkmanager]` - Type annotations for
[NetworkManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_networkmanager/)
service.
- `boto3-stubs-lite[networkmonitor]` - Type annotations for
[CloudWatchNetworkMonitor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_networkmonitor/)
service.
- `boto3-stubs-lite[oam]` - Type annotations for
[CloudWatchObservabilityAccessManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_oam/)
service.
- `boto3-stubs-lite[omics]` - Type annotations for
[Omics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_omics/)
service.
- `boto3-stubs-lite[opensearch]` - Type annotations for
[OpenSearchService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opensearch/)
service.
- `boto3-stubs-lite[opensearchserverless]` - Type annotations for
[OpenSearchServiceServerless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opensearchserverless/)
service.
- `boto3-stubs-lite[opsworks]` - Type annotations for
[OpsWorks](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opsworks/)
service.
- `boto3-stubs-lite[opsworkscm]` - Type annotations for
[OpsWorksCM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opsworkscm/)
service.
- `boto3-stubs-lite[organizations]` - Type annotations for
[Organizations](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/)
service.
- `boto3-stubs-lite[osis]` - Type annotations for
[OpenSearchIngestion](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_osis/)
service.
- `boto3-stubs-lite[outposts]` - Type annotations for
[Outposts](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_outposts/)
service.
- `boto3-stubs-lite[panorama]` - Type annotations for
[Panorama](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_panorama/)
service.
- `boto3-stubs-lite[payment-cryptography]` - Type annotations for
[PaymentCryptographyControlPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_payment_cryptography/)
service.
- `boto3-stubs-lite[payment-cryptography-data]` - Type annotations for
[PaymentCryptographyDataPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_payment_cryptography_data/)
service.
- `boto3-stubs-lite[pca-connector-ad]` - Type annotations for
[PcaConnectorAd](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pca_connector_ad/)
service.
- `boto3-stubs-lite[pca-connector-scep]` - Type annotations for
[PrivateCAConnectorforSCEP](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pca_connector_scep/)
service.
- `boto3-stubs-lite[pcs]` - Type annotations for
[ParallelComputingService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pcs/)
service.
- `boto3-stubs-lite[personalize]` - Type annotations for
[Personalize](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_personalize/)
service.
- `boto3-stubs-lite[personalize-events]` - Type annotations for
[PersonalizeEvents](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_personalize_events/)
service.
- `boto3-stubs-lite[personalize-runtime]` - Type annotations for
[PersonalizeRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_personalize_runtime/)
service.
- `boto3-stubs-lite[pi]` - Type annotations for
[PI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pi/) service.
- `boto3-stubs-lite[pinpoint]` - Type annotations for
[Pinpoint](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint/)
service.
- `boto3-stubs-lite[pinpoint-email]` - Type annotations for
[PinpointEmail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint_email/)
service.
- `boto3-stubs-lite[pinpoint-sms-voice]` - Type annotations for
[PinpointSMSVoice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint_sms_voice/)
service.
- `boto3-stubs-lite[pinpoint-sms-voice-v2]` - Type annotations for
[PinpointSMSVoiceV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint_sms_voice_v2/)
service.
- `boto3-stubs-lite[pipes]` - Type annotations for
[EventBridgePipes](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pipes/)
service.
- `boto3-stubs-lite[polly]` - Type annotations for
[Polly](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_polly/)
service.
- `boto3-stubs-lite[pricing]` - Type annotations for
[Pricing](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pricing/)
service.
- `boto3-stubs-lite[privatenetworks]` - Type annotations for
[Private5G](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_privatenetworks/)
service.
- `boto3-stubs-lite[proton]` - Type annotations for
[Proton](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_proton/)
service.
- `boto3-stubs-lite[qapps]` - Type annotations for
[QApps](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qapps/)
service.
- `boto3-stubs-lite[qbusiness]` - Type annotations for
[QBusiness](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qbusiness/)
service.
- `boto3-stubs-lite[qconnect]` - Type annotations for
[QConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qconnect/)
service.
- `boto3-stubs-lite[qldb]` - Type annotations for
[QLDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qldb/) service.
- `boto3-stubs-lite[qldb-session]` - Type annotations for
[QLDBSession](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qldb_session/)
service.
- `boto3-stubs-lite[quicksight]` - Type annotations for
[QuickSight](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_quicksight/)
service.
- `boto3-stubs-lite[ram]` - Type annotations for
[RAM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ram/) service.
- `boto3-stubs-lite[rbin]` - Type annotations for
[RecycleBin](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rbin/)
service.
- `boto3-stubs-lite[rds]` - Type annotations for
[RDS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rds/) service.
- `boto3-stubs-lite[rds-data]` - Type annotations for
[RDSDataService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rds_data/)
service.
- `boto3-stubs-lite[redshift]` - Type annotations for
[Redshift](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/)
service.
- `boto3-stubs-lite[redshift-data]` - Type annotations for
[RedshiftDataAPIService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift_data/)
service.
- `boto3-stubs-lite[redshift-serverless]` - Type annotations for
[RedshiftServerless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift_serverless/)
service.
- `boto3-stubs-lite[rekognition]` - Type annotations for
[Rekognition](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rekognition/)
service.
- `boto3-stubs-lite[repostspace]` - Type annotations for
[RePostPrivate](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_repostspace/)
service.
- `boto3-stubs-lite[resiliencehub]` - Type annotations for
[ResilienceHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resiliencehub/)
service.
- `boto3-stubs-lite[resource-explorer-2]` - Type annotations for
[ResourceExplorer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resource_explorer_2/)
service.
- `boto3-stubs-lite[resource-groups]` - Type annotations for
[ResourceGroups](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resource_groups/)
service.
- `boto3-stubs-lite[resourcegroupstaggingapi]` - Type annotations for
[ResourceGroupsTaggingAPI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resourcegroupstaggingapi/)
service.
- `boto3-stubs-lite[robomaker]` - Type annotations for
[RoboMaker](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_robomaker/)
service.
- `boto3-stubs-lite[rolesanywhere]` - Type annotations for
[IAMRolesAnywhere](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rolesanywhere/)
service.
- `boto3-stubs-lite[route53]` - Type annotations for
[Route53](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53/)
service.
- `boto3-stubs-lite[route53-recovery-cluster]` - Type annotations for
[Route53RecoveryCluster](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53_recovery_cluster/)
service.
- `boto3-stubs-lite[route53-recovery-control-config]` - Type annotations for
[Route53RecoveryControlConfig](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53_recovery_control_config/)
service.
- `boto3-stubs-lite[route53-recovery-readiness]` - Type annotations for
[Route53RecoveryReadiness](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53_recovery_readiness/)
service.
- `boto3-stubs-lite[route53domains]` - Type annotations for
[Route53Domains](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53domains/)
service.
- `boto3-stubs-lite[route53profiles]` - Type annotations for
[Route53Profiles](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53profiles/)
service.
- `boto3-stubs-lite[route53resolver]` - Type annotations for
[Route53Resolver](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53resolver/)
service.
- `boto3-stubs-lite[rum]` - Type annotations for
[CloudWatchRUM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rum/)
service.
- `boto3-stubs-lite[s3]` - Type annotations for
[S3](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3/) service.
- `boto3-stubs-lite[s3control]` - Type annotations for
[S3Control](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3control/)
service.
- `boto3-stubs-lite[s3outposts]` - Type annotations for
[S3Outposts](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3outposts/)
service.
- `boto3-stubs-lite[sagemaker]` - Type annotations for
[SageMaker](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/)
service.
- `boto3-stubs-lite[sagemaker-a2i-runtime]` - Type annotations for
[AugmentedAIRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_a2i_runtime/)
service.
- `boto3-stubs-lite[sagemaker-edge]` - Type annotations for
[SagemakerEdgeManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_edge/)
service.
- `boto3-stubs-lite[sagemaker-featurestore-runtime]` - Type annotations for
[SageMakerFeatureStoreRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_featurestore_runtime/)
service.
- `boto3-stubs-lite[sagemaker-geospatial]` - Type annotations for
[SageMakergeospatialcapabilities](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_geospatial/)
service.
- `boto3-stubs-lite[sagemaker-metrics]` - Type annotations for
[SageMakerMetrics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_metrics/)
service.
- `boto3-stubs-lite[sagemaker-runtime]` - Type annotations for
[SageMakerRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_runtime/)
service.
- `boto3-stubs-lite[savingsplans]` - Type annotations for
[SavingsPlans](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_savingsplans/)
service.
- `boto3-stubs-lite[scheduler]` - Type annotations for
[EventBridgeScheduler](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_scheduler/)
service.
- `boto3-stubs-lite[schemas]` - Type annotations for
[Schemas](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_schemas/)
service.
- `boto3-stubs-lite[sdb]` - Type annotations for
[SimpleDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sdb/)
service.
- `boto3-stubs-lite[secretsmanager]` - Type annotations for
[SecretsManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_secretsmanager/)
service.
- `boto3-stubs-lite[securityhub]` - Type annotations for
[SecurityHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_securityhub/)
service.
- `boto3-stubs-lite[securitylake]` - Type annotations for
[SecurityLake](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_securitylake/)
service.
- `boto3-stubs-lite[serverlessrepo]` - Type annotations for
[ServerlessApplicationRepository](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_serverlessrepo/)
service.
- `boto3-stubs-lite[service-quotas]` - Type annotations for
[ServiceQuotas](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_service_quotas/)
service.
- `boto3-stubs-lite[servicecatalog]` - Type annotations for
[ServiceCatalog](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_servicecatalog/)
service.
- `boto3-stubs-lite[servicecatalog-appregistry]` - Type annotations for
[AppRegistry](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_servicecatalog_appregistry/)
service.
- `boto3-stubs-lite[servicediscovery]` - Type annotations for
[ServiceDiscovery](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_servicediscovery/)
service.
- `boto3-stubs-lite[ses]` - Type annotations for
[SES](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ses/) service.
- `boto3-stubs-lite[sesv2]` - Type annotations for
[SESV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sesv2/)
service.
- `boto3-stubs-lite[shield]` - Type annotations for
[Shield](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_shield/)
service.
- `boto3-stubs-lite[signer]` - Type annotations for
[Signer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_signer/)
service.
- `boto3-stubs-lite[simspaceweaver]` - Type annotations for
[SimSpaceWeaver](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_simspaceweaver/)
service.
- `boto3-stubs-lite[sms]` - Type annotations for
[SMS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sms/) service.
- `boto3-stubs-lite[sms-voice]` - Type annotations for
[PinpointSMSVoice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sms_voice/)
service.
- `boto3-stubs-lite[snow-device-management]` - Type annotations for
[SnowDeviceManagement](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_snow_device_management/)
service.
- `boto3-stubs-lite[snowball]` - Type annotations for
[Snowball](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_snowball/)
service.
- `boto3-stubs-lite[sns]` - Type annotations for
[SNS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sns/) service.
- `boto3-stubs-lite[socialmessaging]` - Type annotations for
[EndUserMessagingSocial](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_socialmessaging/)
service.
- `boto3-stubs-lite[sqs]` - Type annotations for
[SQS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sqs/) service.
- `boto3-stubs-lite[ssm]` - Type annotations for
[SSM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm/) service.
- `boto3-stubs-lite[ssm-contacts]` - Type annotations for
[SSMContacts](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_contacts/)
service.
- `boto3-stubs-lite[ssm-incidents]` - Type annotations for
[SSMIncidents](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_incidents/)
service.
- `boto3-stubs-lite[ssm-quicksetup]` - Type annotations for
[SystemsManagerQuickSetup](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_quicksetup/)
service.
- `boto3-stubs-lite[ssm-sap]` - Type annotations for
[SsmSap](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_sap/)
service.
- `boto3-stubs-lite[sso]` - Type annotations for
[SSO](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso/) service.
- `boto3-stubs-lite[sso-admin]` - Type annotations for
[SSOAdmin](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/)
service.
- `boto3-stubs-lite[sso-oidc]` - Type annotations for
[SSOOIDC](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_oidc/)
service.
- `boto3-stubs-lite[stepfunctions]` - Type annotations for
[SFN](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_stepfunctions/)
service.
- `boto3-stubs-lite[storagegateway]` - Type annotations for
[StorageGateway](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_storagegateway/)
service.
- `boto3-stubs-lite[sts]` - Type annotations for
[STS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sts/) service.
- `boto3-stubs-lite[supplychain]` - Type annotations for
[SupplyChain](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_supplychain/)
service.
- `boto3-stubs-lite[support]` - Type annotations for
[Support](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_support/)
service.
- `boto3-stubs-lite[support-app]` - Type annotations for
[SupportApp](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_support_app/)
service.
- `boto3-stubs-lite[swf]` - Type annotations for
[SWF](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_swf/) service.
- `boto3-stubs-lite[synthetics]` - Type annotations for
[Synthetics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_synthetics/)
service.
- `boto3-stubs-lite[taxsettings]` - Type annotations for
[TaxSettings](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_taxsettings/)
service.
- `boto3-stubs-lite[textract]` - Type annotations for
[Textract](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_textract/)
service.
- `boto3-stubs-lite[timestream-influxdb]` - Type annotations for
[TimestreamInfluxDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_influxdb/)
service.
- `boto3-stubs-lite[timestream-query]` - Type annotations for
[TimestreamQuery](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_query/)
service.
- `boto3-stubs-lite[timestream-write]` - Type annotations for
[TimestreamWrite](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/)
service.
- `boto3-stubs-lite[tnb]` - Type annotations for
[TelcoNetworkBuilder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_tnb/)
service.
- `boto3-stubs-lite[transcribe]` - Type annotations for
[TranscribeService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transcribe/)
service.
- `boto3-stubs-lite[transfer]` - Type annotations for
[Transfer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/)
service.
- `boto3-stubs-lite[translate]` - Type annotations for
[Translate](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_translate/)
service.
- `boto3-stubs-lite[trustedadvisor]` - Type annotations for
[TrustedAdvisorPublicAPI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_trustedadvisor/)
service.
- `boto3-stubs-lite[verifiedpermissions]` - Type annotations for
[VerifiedPermissions](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_verifiedpermissions/)
service.
- `boto3-stubs-lite[voice-id]` - Type annotations for
[VoiceID](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_voice_id/)
service.
- `boto3-stubs-lite[vpc-lattice]` - Type annotations for
[VPCLattice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_vpc_lattice/)
service.
- `boto3-stubs-lite[waf]` - Type annotations for
[WAF](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf/) service.
- `boto3-stubs-lite[waf-regional]` - Type annotations for
[WAFRegional](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf_regional/)
service.
- `boto3-stubs-lite[wafv2]` - Type annotations for
[WAFV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_wafv2/)
service.
- `boto3-stubs-lite[wellarchitected]` - Type annotations for
[WellArchitected](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_wellarchitected/)
service.
- `boto3-stubs-lite[wisdom]` - Type annotations for
[ConnectWisdomService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_wisdom/)
service.
- `boto3-stubs-lite[workdocs]` - Type annotations for
[WorkDocs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workdocs/)
service.
- `boto3-stubs-lite[workmail]` - Type annotations for
[WorkMail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workmail/)
service.
- `boto3-stubs-lite[workmailmessageflow]` - Type annotations for
[WorkMailMessageFlow](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workmailmessageflow/)
service.
- `boto3-stubs-lite[workspaces]` - Type annotations for
[WorkSpaces](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces/)
service.
- `boto3-stubs-lite[workspaces-thin-client]` - Type annotations for
[WorkSpacesThinClient](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_thin_client/)
service.
- `boto3-stubs-lite[workspaces-web]` - Type annotations for
[WorkSpacesWeb](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/)
service.
- `boto3-stubs-lite[xray]` - Type annotations for
[XRay](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_xray/) service.
Raw data
{
"_id": null,
"home_page": "https://github.com/youtype/mypy_boto3_builder",
"name": "boto3-stubs-lite",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "boto3 type-annotations boto3-stubs mypy typeshed autocomplete",
"author": "Vlad Emelianov",
"author_email": "vlad.emelianov.nz@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/6e/43/016b61d40deca7456568e154358ad9d52a12d93de65752e6e1be1c5de4c3/boto3_stubs_lite-1.35.54.tar.gz",
"platform": null,
"description": "<a id=\"boto3-stubs-lite\"></a>\n\n# boto3-stubs-lite\n\n[![PyPI - boto3-stubs-lite](https://img.shields.io/pypi/v/boto3-stubs-lite.svg?color=blue)](https://pypi.org/project/boto3-stubs-lite)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/boto3-stubs-lite.svg?color=blue)](https://pypi.org/project/boto3-stubs-lite)\n[![Docs](https://img.shields.io/readthedocs/boto3-stubs.svg?color=blue)](https://youtype.github.io/boto3_stubs_docs/)\n[![PyPI - Downloads](https://static.pepy.tech/badge/boto3-stubs-lite)](https://pepy.tech/project/boto3-stubs-lite)\n\n![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)\n\nType annotations for\n[boto3 1.35.54](https://boto3.amazonaws.com/v1/documentation/api/1.35.54/index.html)\ncompatible with [VSCode](https://code.visualstudio.com/),\n[PyCharm](https://www.jetbrains.com/pycharm/),\n[Emacs](https://www.gnu.org/software/emacs/),\n[Sublime Text](https://www.sublimetext.com/),\n[mypy](https://github.com/python/mypy),\n[pyright](https://github.com/microsoft/pyright) and other tools.\n\nGenerated by\n[mypy-boto3-builder 8.1.4](https://github.com/youtype/mypy_boto3_builder).\n\nMore information can be found in\n[boto3-stubs-lite docs](https://youtype.github.io/boto3_stubs_docs/).\n\nSee how it helps to find and fix potential bugs:\n\n![boto3-stubs demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)\n\n- [boto3-stubs-lite](#boto3-stubs-lite)\n - [How to install](#how-to-install)\n - [VSCode extension](#vscode-extension)\n - [From PyPI with pip](#from-pypi-with-pip)\n - [From conda-forge](#from-conda-forge)\n - [How to uninstall](#how-to-uninstall)\n - [Usage](#usage)\n - [VSCode](#vscode)\n - [PyCharm](#pycharm)\n - [Emacs](#emacs)\n - [Sublime Text](#sublime-text)\n - [Other IDEs](#other-ides)\n - [mypy](#mypy)\n - [pyright](#pyright)\n - [Explicit type annotations](#explicit-type-annotations)\n - [Pylint compatibility](#pylint-compatibility)\n - [How it works](#how-it-works)\n - [What's new](#what's-new)\n - [Implemented features](#implemented-features)\n - [Latest changes](#latest-changes)\n - [Versioning](#versioning)\n - [Thank you](#thank-you)\n - [Documentation](#documentation)\n - [Support and contributing](#support-and-contributing)\n - [Submodules](#submodules)\n\n<a id=\"how-to-install\"></a>\n\n## How to install\n\n<a id=\"vscode-extension\"></a>\n\n### VSCode extension\n\nAdd\n[AWS Boto3](https://marketplace.visualstudio.com/items?itemName=Boto3typed.boto3-ide)\nextension to your VSCode and run `AWS boto3: Quick Start` command.\n\nClick `Auto-discover services` and select services you use in the current\nproject.\n\n<a id=\"from-pypi-with-pip\"></a>\n\n### From PyPI with pip\n\nInstall `boto3-stubs-lite` to add type annotations for `boto3` package.\n\n```bash\n# install type annotations only for boto3\npython -m pip install boto3-stubs-lite\n\n# install boto3 type annotations\n# for ec2, s3, rds, lambda, sqs, dynamo and cloudformation\npython -m pip install 'boto3-stubs-lite[essential]'\n\n# or install annotations for services you use\npython -m pip install 'boto3-stubs-lite[acm,apigateway]'\n\n# or install annotations in sync with boto3 version\npython -m pip install 'boto3-stubs-lite[boto3]'\n\n\n# or install all-in-one annotations for all services at once\npython -m pip install 'boto3-stubs-lite[full]'\n\n\n\n```\n\n<a id=\"from-conda-forge\"></a>\n\n### From conda-forge\n\nAdd `conda-forge` to your channels with:\n\n```bash\nconda config --add channels conda-forge\nconda config --set channel_priority strict\n```\n\nOnce the `conda-forge` channel has been enabled, `boto3-stubs-lite` and\n`boto3-stubs-lite-essential` can be installed with:\n\n```bash\nconda install boto3-stubs-lite boto3-stubs-lite-essential\n```\n\nIt is possible to list all of the versions of `boto3-stubs-lite` available on\nyour platform with:\n\n```bash\nconda search boto3-stubs-lite --channel conda-forge\n```\n\n<a id=\"how-to-uninstall\"></a>\n\n## How to uninstall\n\n```bash\n# uninstall boto3-stubs-lite\npython -m pip uninstall -y boto3-stubs-lite\n```\n\n<a id=\"usage\"></a>\n\n## Usage\n\n<a id=\"vscode\"></a>\n\n### VSCode\n\n- Install\n [Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python)\n- Install\n [Pylance extension](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)\n- Set `Pylance` as your Python Language Server\n- Install `boto3-stubs-lite[essential]` in your environment:\n\n```bash\npython -m pip install 'boto3-stubs-lite[essential]'\n```\n\nBoth type checking and code completion should now work. No explicit type\nannotations required, write your `boto3` code as usual.\n\n<a id=\"pycharm\"></a>\n\n### PyCharm\n\nInstall `boto3-stubs-lite[essential]` in your environment:\n\n```bash\npython -m pip install 'boto3-stubs-lite[essential]'\n```\n\nBoth type checking and code completion should now work. Explicit type\nannotations **are required**.\n\n<a id=\"emacs\"></a>\n\n### Emacs\n\n- Install `boto3-stubs-lite` with services you use in your environment:\n\n```bash\npython -m pip install 'boto3-stubs-lite[essential]'\n```\n\n- Install [use-package](https://github.com/jwiegley/use-package),\n [lsp](https://github.com/emacs-lsp/lsp-mode/),\n [company](https://github.com/company-mode/company-mode) and\n [flycheck](https://github.com/flycheck/flycheck) packages\n- Install [lsp-pyright](https://github.com/emacs-lsp/lsp-pyright) package\n\n```elisp\n(use-package lsp-pyright\n :ensure t\n :hook (python-mode . (lambda ()\n (require 'lsp-pyright)\n (lsp))) ; or lsp-deferred\n :init (when (executable-find \"python3\")\n (setq lsp-pyright-python-executable-cmd \"python3\"))\n )\n```\n\n- Make sure emacs uses the environment where you have installed\n `boto3-stubs-lite`\n\nType checking should now work. No explicit type annotations required, write\nyour `boto3` code as usual.\n\n<a id=\"sublime-text\"></a>\n\n### Sublime Text\n\n- Install `boto3-stubs-lite[essential]` with services you use in your\n environment:\n\n```bash\npython -m pip install 'boto3-stubs-lite[essential]'\n```\n\n- Install [LSP-pyright](https://github.com/sublimelsp/LSP-pyright) package\n\nType checking should now work. No explicit type annotations required, write\nyour `boto3` code as usual.\n\n<a id=\"other-ides\"></a>\n\n### Other IDEs\n\nNot tested, but as long as your IDE supports `mypy` or `pyright`, everything\nshould work.\n\n<a id=\"mypy\"></a>\n\n### mypy\n\n- Install `mypy`: `python -m pip install mypy`\n- Install `boto3-stubs-lite[essential]` in your environment:\n\n```bash\npython -m pip install 'boto3-stubs-lite[essential]'\n```\n\nType checking should now work. No explicit type annotations required, write\nyour `boto3` code as usual.\n\n<a id=\"pyright\"></a>\n\n### pyright\n\n- Install `pyright`: `npm i -g pyright`\n- Install `boto3-stubs-lite[essential]` in your environment:\n\n```bash\npython -m pip install 'boto3-stubs-lite[essential]'\n```\n\nOptionally, you can install `boto3-stubs-lite` to `typings` directory.\n\nType checking should now work. No explicit type annotations required, write\nyour `boto3` code as usual.\n\n<a id=\"explicit-type-annotations\"></a>\n\n### Explicit type annotations\n\nTo speed up type checking and code completion, you can set types explicitly.\n\n```python\nimport boto3\nfrom boto3.session import Session\n\nfrom mypy_boto3_ec2.client import EC2Client\nfrom mypy_boto3_ec2.service_resource import EC2ServiceResource\nfrom mypy_boto3_ec2.waiter import BundleTaskCompleteWaiter\nfrom mypy_boto3_ec2.paginator import DescribeVolumesPaginator\n\nsession = Session(region_name=\"us-west-1\")\n\nec2_client: EC2Client = boto3.client(\"ec2\", region_name=\"us-west-1\")\nec2_resource: EC2ServiceResource = session.resource(\"ec2\")\n\nbundle_task_complete_waiter: BundleTaskCompleteWaiter = ec2_client.get_waiter(\n \"bundle_task_complete\"\n)\ndescribe_volumes_paginator: DescribeVolumesPaginator = ec2_client.get_paginator(\"describe_volumes\")\n```\n\n<a id=\"pylint-compatibility\"></a>\n\n### Pylint compatibility\n\nIt is totally safe to use `TYPE_CHECKING` flag in order to avoid `boto3-stubs`\ndependency in production. However, there is an issue in `pylint` that it\ncomplains about undefined variables. To fix it, set all types to `object` in\nnon-`TYPE_CHECKING` mode.\n\n```python\nimport boto3\nfrom typing import TYPE_CHECKING\n\nif TYPE_CHECKING:\n from mypy_boto3_ec2 import EC2Client, EC2ServiceResource\n from mypy_boto3_ec2.waiters import BundleTaskCompleteWaiter\n from mypy_boto3_ec2.paginators import DescribeVolumesPaginator\nelse:\n EC2Client = object\n EC2ServiceResource = object\n BundleTaskCompleteWaiter = object\n DescribeVolumesPaginator = object\n\n...\n```\n\n<a id=\"how-it-works\"></a>\n\n## How it works\n\nFully automated\n[mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder) carefully\ngenerates type annotations for each service, patiently waiting for `boto3`\nupdates. It delivers drop-in type annotations for you and makes sure that:\n\n- All available `boto3` services are covered.\n- Each public class and method of every `boto3` service gets valid type\n annotations extracted from `botocore` schemas.\n- Type annotations include up-to-date documentation.\n- Link to documentation is provided for every method.\n- Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.\n\n<a id=\"what's-new\"></a>\n\n## What's new\n\n<a id=\"implemented-features\"></a>\n\n### Implemented features\n\n- Fully type annotated `boto3`, `botocore`, `aiobotocore` and `aioboto3`\n libraries\n- `mypy`, `pyright`, `VSCode`, `PyCharm`, `Sublime Text` and `Emacs`\n compatibility\n- `Client`, `ServiceResource`, `Resource`, `Waiter` `Paginator` type\n annotations for each service\n- Generated `TypeDefs` for each service\n- Generated `Literals` for each service\n- Auto discovery of types for `boto3.client` and `boto3.resource` calls\n- Auto discovery of types for `session.client` and `session.resource` calls\n- Auto discovery of types for `client.get_waiter` and `client.get_paginator`\n calls\n- Auto discovery of types for `ServiceResource` and `Resource` collections\n- Auto discovery of types for `aiobotocore.Session.create_client` calls\n\n<a id=\"latest-changes\"></a>\n\n### Latest changes\n\nBuilder changelog can be found in\n[Releases](https://github.com/youtype/mypy_boto3_builder/releases).\n\n<a id=\"versioning\"></a>\n\n## Versioning\n\n`boto3-stubs-lite` version is the same as related `boto3` version and follows\n[PEP 440](https://www.python.org/dev/peps/pep-0440/) format.\n\n<a id=\"thank-you\"></a>\n\n## Thank you\n\n- [Allie Fitter](https://github.com/alliefitter) for\n [boto3-type-annotations](https://pypi.org/project/boto3-type-annotations/),\n this package is based on top of his work\n- [black](https://github.com/psf/black) developers for an awesome formatting\n tool\n- [Timothy Edmund Crosley](https://github.com/timothycrosley) for\n [isort](https://github.com/PyCQA/isort) and how flexible it is\n- [mypy](https://github.com/python/mypy) developers for doing all dirty work\n for us\n- [pyright](https://github.com/microsoft/pyright) team for the new era of typed\n Python\n\n<a id=\"documentation\"></a>\n\n## Documentation\n\nAll services type annotations can be found in\n[boto3 docs](https://youtype.github.io/boto3_stubs_docs/)\n\n<a id=\"support-and-contributing\"></a>\n\n## Support and contributing\n\nThis package is auto-generated. Please reports any bugs or request new features\nin [mypy-boto3-builder](https://github.com/youtype/mypy_boto3_builder/issues/)\nrepository.\n\n<a id=\"submodules\"></a>\n\n## Submodules\n\n- `boto3-stubs-lite[full]` - Type annotations for all 390 services in one\n package (recommended).\n- `boto3-stubs-lite[all]` - Type annotations for all 390 services in separate\n packages.\n- `boto3-stubs-lite[essential]` - Type annotations for\n [CloudFormation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudformation/),\n [DynamoDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/),\n [EC2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ec2/),\n [Lambda](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda/),\n [RDS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rds/),\n [S3](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3/) and\n [SQS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sqs/) services.\n- `boto3-stubs-lite[boto3]` - Install annotations in sync with `boto3` version.\n- `boto3-stubs-lite[accessanalyzer]` - Type annotations for\n [AccessAnalyzer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_accessanalyzer/)\n service.\n- `boto3-stubs-lite[account]` - Type annotations for\n [Account](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_account/)\n service.\n- `boto3-stubs-lite[acm]` - Type annotations for\n [ACM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_acm/) service.\n- `boto3-stubs-lite[acm-pca]` - Type annotations for\n [ACMPCA](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_acm_pca/)\n service.\n- `boto3-stubs-lite[amp]` - Type annotations for\n [PrometheusService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amp/)\n service.\n- `boto3-stubs-lite[amplify]` - Type annotations for\n [Amplify](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amplify/)\n service.\n- `boto3-stubs-lite[amplifybackend]` - Type annotations for\n [AmplifyBackend](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amplifybackend/)\n service.\n- `boto3-stubs-lite[amplifyuibuilder]` - Type annotations for\n [AmplifyUIBuilder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amplifyuibuilder/)\n service.\n- `boto3-stubs-lite[apigateway]` - Type annotations for\n [APIGateway](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apigateway/)\n service.\n- `boto3-stubs-lite[apigatewaymanagementapi]` - Type annotations for\n [ApiGatewayManagementApi](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apigatewaymanagementapi/)\n service.\n- `boto3-stubs-lite[apigatewayv2]` - Type annotations for\n [ApiGatewayV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apigatewayv2/)\n service.\n- `boto3-stubs-lite[appconfig]` - Type annotations for\n [AppConfig](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/)\n service.\n- `boto3-stubs-lite[appconfigdata]` - Type annotations for\n [AppConfigData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/)\n service.\n- `boto3-stubs-lite[appfabric]` - Type annotations for\n [AppFabric](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appfabric/)\n service.\n- `boto3-stubs-lite[appflow]` - Type annotations for\n [Appflow](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appflow/)\n service.\n- `boto3-stubs-lite[appintegrations]` - Type annotations for\n [AppIntegrationsService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appintegrations/)\n service.\n- `boto3-stubs-lite[application-autoscaling]` - Type annotations for\n [ApplicationAutoScaling](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_application_autoscaling/)\n service.\n- `boto3-stubs-lite[application-insights]` - Type annotations for\n [ApplicationInsights](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_application_insights/)\n service.\n- `boto3-stubs-lite[application-signals]` - Type annotations for\n [CloudWatchApplicationSignals](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_application_signals/)\n service.\n- `boto3-stubs-lite[applicationcostprofiler]` - Type annotations for\n [ApplicationCostProfiler](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_applicationcostprofiler/)\n service.\n- `boto3-stubs-lite[appmesh]` - Type annotations for\n [AppMesh](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appmesh/)\n service.\n- `boto3-stubs-lite[apprunner]` - Type annotations for\n [AppRunner](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apprunner/)\n service.\n- `boto3-stubs-lite[appstream]` - Type annotations for\n [AppStream](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appstream/)\n service.\n- `boto3-stubs-lite[appsync]` - Type annotations for\n [AppSync](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appsync/)\n service.\n- `boto3-stubs-lite[apptest]` - Type annotations for\n [MainframeModernizationApplicationTesting](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apptest/)\n service.\n- `boto3-stubs-lite[arc-zonal-shift]` - Type annotations for\n [ARCZonalShift](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_arc_zonal_shift/)\n service.\n- `boto3-stubs-lite[artifact]` - Type annotations for\n [Artifact](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_artifact/)\n service.\n- `boto3-stubs-lite[athena]` - Type annotations for\n [Athena](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/)\n service.\n- `boto3-stubs-lite[auditmanager]` - Type annotations for\n [AuditManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_auditmanager/)\n service.\n- `boto3-stubs-lite[autoscaling]` - Type annotations for\n [AutoScaling](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_autoscaling/)\n service.\n- `boto3-stubs-lite[autoscaling-plans]` - Type annotations for\n [AutoScalingPlans](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_autoscaling_plans/)\n service.\n- `boto3-stubs-lite[b2bi]` - Type annotations for\n [B2BI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_b2bi/) service.\n- `boto3-stubs-lite[backup]` - Type annotations for\n [Backup](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_backup/)\n service.\n- `boto3-stubs-lite[backup-gateway]` - Type annotations for\n [BackupGateway](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_backup_gateway/)\n service.\n- `boto3-stubs-lite[batch]` - Type annotations for\n [Batch](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_batch/)\n service.\n- `boto3-stubs-lite[bcm-data-exports]` - Type annotations for\n [BillingandCostManagementDataExports](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bcm_data_exports/)\n service.\n- `boto3-stubs-lite[bedrock]` - Type annotations for\n [Bedrock](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock/)\n service.\n- `boto3-stubs-lite[bedrock-agent]` - Type annotations for\n [AgentsforBedrock](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock_agent/)\n service.\n- `boto3-stubs-lite[bedrock-agent-runtime]` - Type annotations for\n [AgentsforBedrockRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock_agent_runtime/)\n service.\n- `boto3-stubs-lite[bedrock-runtime]` - Type annotations for\n [BedrockRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock_runtime/)\n service.\n- `boto3-stubs-lite[billingconductor]` - Type annotations for\n [BillingConductor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_billingconductor/)\n service.\n- `boto3-stubs-lite[braket]` - Type annotations for\n [Braket](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_braket/)\n service.\n- `boto3-stubs-lite[budgets]` - Type annotations for\n [Budgets](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_budgets/)\n service.\n- `boto3-stubs-lite[ce]` - Type annotations for\n [CostExplorer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ce/)\n service.\n- `boto3-stubs-lite[chatbot]` - Type annotations for\n [Chatbot](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chatbot/)\n service.\n- `boto3-stubs-lite[chime]` - Type annotations for\n [Chime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime/)\n service.\n- `boto3-stubs-lite[chime-sdk-identity]` - Type annotations for\n [ChimeSDKIdentity](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_identity/)\n service.\n- `boto3-stubs-lite[chime-sdk-media-pipelines]` - Type annotations for\n [ChimeSDKMediaPipelines](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_media_pipelines/)\n service.\n- `boto3-stubs-lite[chime-sdk-meetings]` - Type annotations for\n [ChimeSDKMeetings](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_meetings/)\n service.\n- `boto3-stubs-lite[chime-sdk-messaging]` - Type annotations for\n [ChimeSDKMessaging](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_messaging/)\n service.\n- `boto3-stubs-lite[chime-sdk-voice]` - Type annotations for\n [ChimeSDKVoice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_voice/)\n service.\n- `boto3-stubs-lite[cleanrooms]` - Type annotations for\n [CleanRoomsService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cleanrooms/)\n service.\n- `boto3-stubs-lite[cleanroomsml]` - Type annotations for\n [CleanRoomsML](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cleanroomsml/)\n service.\n- `boto3-stubs-lite[cloud9]` - Type annotations for\n [Cloud9](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloud9/)\n service.\n- `boto3-stubs-lite[cloudcontrol]` - Type annotations for\n [CloudControlApi](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudcontrol/)\n service.\n- `boto3-stubs-lite[clouddirectory]` - Type annotations for\n [CloudDirectory](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_clouddirectory/)\n service.\n- `boto3-stubs-lite[cloudformation]` - Type annotations for\n [CloudFormation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudformation/)\n service.\n- `boto3-stubs-lite[cloudfront]` - Type annotations for\n [CloudFront](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudfront/)\n service.\n- `boto3-stubs-lite[cloudfront-keyvaluestore]` - Type annotations for\n [CloudFrontKeyValueStore](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudfront_keyvaluestore/)\n service.\n- `boto3-stubs-lite[cloudhsm]` - Type annotations for\n [CloudHSM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudhsm/)\n service.\n- `boto3-stubs-lite[cloudhsmv2]` - Type annotations for\n [CloudHSMV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudhsmv2/)\n service.\n- `boto3-stubs-lite[cloudsearch]` - Type annotations for\n [CloudSearch](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudsearch/)\n service.\n- `boto3-stubs-lite[cloudsearchdomain]` - Type annotations for\n [CloudSearchDomain](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudsearchdomain/)\n service.\n- `boto3-stubs-lite[cloudtrail]` - Type annotations for\n [CloudTrail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudtrail/)\n service.\n- `boto3-stubs-lite[cloudtrail-data]` - Type annotations for\n [CloudTrailDataService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudtrail_data/)\n service.\n- `boto3-stubs-lite[cloudwatch]` - Type annotations for\n [CloudWatch](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudwatch/)\n service.\n- `boto3-stubs-lite[codeartifact]` - Type annotations for\n [CodeArtifact](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeartifact/)\n service.\n- `boto3-stubs-lite[codebuild]` - Type annotations for\n [CodeBuild](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codebuild/)\n service.\n- `boto3-stubs-lite[codecatalyst]` - Type annotations for\n [CodeCatalyst](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codecatalyst/)\n service.\n- `boto3-stubs-lite[codecommit]` - Type annotations for\n [CodeCommit](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codecommit/)\n service.\n- `boto3-stubs-lite[codeconnections]` - Type annotations for\n [CodeConnections](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeconnections/)\n service.\n- `boto3-stubs-lite[codedeploy]` - Type annotations for\n [CodeDeploy](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codedeploy/)\n service.\n- `boto3-stubs-lite[codeguru-reviewer]` - Type annotations for\n [CodeGuruReviewer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeguru_reviewer/)\n service.\n- `boto3-stubs-lite[codeguru-security]` - Type annotations for\n [CodeGuruSecurity](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeguru_security/)\n service.\n- `boto3-stubs-lite[codeguruprofiler]` - Type annotations for\n [CodeGuruProfiler](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeguruprofiler/)\n service.\n- `boto3-stubs-lite[codepipeline]` - Type annotations for\n [CodePipeline](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codepipeline/)\n service.\n- `boto3-stubs-lite[codestar-connections]` - Type annotations for\n [CodeStarconnections](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codestar_connections/)\n service.\n- `boto3-stubs-lite[codestar-notifications]` - Type annotations for\n [CodeStarNotifications](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codestar_notifications/)\n service.\n- `boto3-stubs-lite[cognito-identity]` - Type annotations for\n [CognitoIdentity](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cognito_identity/)\n service.\n- `boto3-stubs-lite[cognito-idp]` - Type annotations for\n [CognitoIdentityProvider](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cognito_idp/)\n service.\n- `boto3-stubs-lite[cognito-sync]` - Type annotations for\n [CognitoSync](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cognito_sync/)\n service.\n- `boto3-stubs-lite[comprehend]` - Type annotations for\n [Comprehend](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_comprehend/)\n service.\n- `boto3-stubs-lite[comprehendmedical]` - Type annotations for\n [ComprehendMedical](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_comprehendmedical/)\n service.\n- `boto3-stubs-lite[compute-optimizer]` - Type annotations for\n [ComputeOptimizer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_compute_optimizer/)\n service.\n- `boto3-stubs-lite[config]` - Type annotations for\n [ConfigService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_config/)\n service.\n- `boto3-stubs-lite[connect]` - Type annotations for\n [Connect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connect/)\n service.\n- `boto3-stubs-lite[connect-contact-lens]` - Type annotations for\n [ConnectContactLens](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connect_contact_lens/)\n service.\n- `boto3-stubs-lite[connectcampaigns]` - Type annotations for\n [ConnectCampaignService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcampaigns/)\n service.\n- `boto3-stubs-lite[connectcases]` - Type annotations for\n [ConnectCases](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/)\n service.\n- `boto3-stubs-lite[connectparticipant]` - Type annotations for\n [ConnectParticipant](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectparticipant/)\n service.\n- `boto3-stubs-lite[controlcatalog]` - Type annotations for\n [ControlCatalog](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_controlcatalog/)\n service.\n- `boto3-stubs-lite[controltower]` - Type annotations for\n [ControlTower](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_controltower/)\n service.\n- `boto3-stubs-lite[cost-optimization-hub]` - Type annotations for\n [CostOptimizationHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cost_optimization_hub/)\n service.\n- `boto3-stubs-lite[cur]` - Type annotations for\n [CostandUsageReportService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cur/)\n service.\n- `boto3-stubs-lite[customer-profiles]` - Type annotations for\n [CustomerProfiles](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_customer_profiles/)\n service.\n- `boto3-stubs-lite[databrew]` - Type annotations for\n [GlueDataBrew](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_databrew/)\n service.\n- `boto3-stubs-lite[dataexchange]` - Type annotations for\n [DataExchange](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dataexchange/)\n service.\n- `boto3-stubs-lite[datapipeline]` - Type annotations for\n [DataPipeline](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_datapipeline/)\n service.\n- `boto3-stubs-lite[datasync]` - Type annotations for\n [DataSync](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_datasync/)\n service.\n- `boto3-stubs-lite[datazone]` - Type annotations for\n [DataZone](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_datazone/)\n service.\n- `boto3-stubs-lite[dax]` - Type annotations for\n [DAX](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dax/) service.\n- `boto3-stubs-lite[deadline]` - Type annotations for\n [DeadlineCloud](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_deadline/)\n service.\n- `boto3-stubs-lite[detective]` - Type annotations for\n [Detective](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_detective/)\n service.\n- `boto3-stubs-lite[devicefarm]` - Type annotations for\n [DeviceFarm](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_devicefarm/)\n service.\n- `boto3-stubs-lite[devops-guru]` - Type annotations for\n [DevOpsGuru](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_devops_guru/)\n service.\n- `boto3-stubs-lite[directconnect]` - Type annotations for\n [DirectConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_directconnect/)\n service.\n- `boto3-stubs-lite[discovery]` - Type annotations for\n [ApplicationDiscoveryService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_discovery/)\n service.\n- `boto3-stubs-lite[dlm]` - Type annotations for\n [DLM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dlm/) service.\n- `boto3-stubs-lite[dms]` - Type annotations for\n [DatabaseMigrationService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dms/)\n service.\n- `boto3-stubs-lite[docdb]` - Type annotations for\n [DocDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_docdb/)\n service.\n- `boto3-stubs-lite[docdb-elastic]` - Type annotations for\n [DocDBElastic](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_docdb_elastic/)\n service.\n- `boto3-stubs-lite[drs]` - Type annotations for\n [Drs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_drs/) service.\n- `boto3-stubs-lite[ds]` - Type annotations for\n [DirectoryService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ds/)\n service.\n- `boto3-stubs-lite[ds-data]` - Type annotations for\n [DirectoryServiceData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ds_data/)\n service.\n- `boto3-stubs-lite[dynamodb]` - Type annotations for\n [DynamoDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/)\n service.\n- `boto3-stubs-lite[dynamodbstreams]` - Type annotations for\n [DynamoDBStreams](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodbstreams/)\n service.\n- `boto3-stubs-lite[ebs]` - Type annotations for\n [EBS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ebs/) service.\n- `boto3-stubs-lite[ec2]` - Type annotations for\n [EC2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ec2/) service.\n- `boto3-stubs-lite[ec2-instance-connect]` - Type annotations for\n [EC2InstanceConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ec2_instance_connect/)\n service.\n- `boto3-stubs-lite[ecr]` - Type annotations for\n [ECR](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ecr/) service.\n- `boto3-stubs-lite[ecr-public]` - Type annotations for\n [ECRPublic](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ecr_public/)\n service.\n- `boto3-stubs-lite[ecs]` - Type annotations for\n [ECS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ecs/) service.\n- `boto3-stubs-lite[efs]` - Type annotations for\n [EFS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_efs/) service.\n- `boto3-stubs-lite[eks]` - Type annotations for\n [EKS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/) service.\n- `boto3-stubs-lite[eks-auth]` - Type annotations for\n [EKSAuth](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks_auth/)\n service.\n- `boto3-stubs-lite[elastic-inference]` - Type annotations for\n [ElasticInference](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elastic_inference/)\n service.\n- `boto3-stubs-lite[elasticache]` - Type annotations for\n [ElastiCache](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elasticache/)\n service.\n- `boto3-stubs-lite[elasticbeanstalk]` - Type annotations for\n [ElasticBeanstalk](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elasticbeanstalk/)\n service.\n- `boto3-stubs-lite[elastictranscoder]` - Type annotations for\n [ElasticTranscoder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elastictranscoder/)\n service.\n- `boto3-stubs-lite[elb]` - Type annotations for\n [ElasticLoadBalancing](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elb/)\n service.\n- `boto3-stubs-lite[elbv2]` - Type annotations for\n [ElasticLoadBalancingv2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elbv2/)\n service.\n- `boto3-stubs-lite[emr]` - Type annotations for\n [EMR](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_emr/) service.\n- `boto3-stubs-lite[emr-containers]` - Type annotations for\n [EMRContainers](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_emr_containers/)\n service.\n- `boto3-stubs-lite[emr-serverless]` - Type annotations for\n [EMRServerless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_emr_serverless/)\n service.\n- `boto3-stubs-lite[entityresolution]` - Type annotations for\n [EntityResolution](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_entityresolution/)\n service.\n- `boto3-stubs-lite[es]` - Type annotations for\n [ElasticsearchService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_es/)\n service.\n- `boto3-stubs-lite[events]` - Type annotations for\n [EventBridge](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_events/)\n service.\n- `boto3-stubs-lite[evidently]` - Type annotations for\n [CloudWatchEvidently](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_evidently/)\n service.\n- `boto3-stubs-lite[finspace]` - Type annotations for\n [Finspace](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_finspace/)\n service.\n- `boto3-stubs-lite[finspace-data]` - Type annotations for\n [FinSpaceData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_finspace_data/)\n service.\n- `boto3-stubs-lite[firehose]` - Type annotations for\n [Firehose](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_firehose/)\n service.\n- `boto3-stubs-lite[fis]` - Type annotations for\n [FIS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_fis/) service.\n- `boto3-stubs-lite[fms]` - Type annotations for\n [FMS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_fms/) service.\n- `boto3-stubs-lite[forecast]` - Type annotations for\n [ForecastService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_forecast/)\n service.\n- `boto3-stubs-lite[forecastquery]` - Type annotations for\n [ForecastQueryService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_forecastquery/)\n service.\n- `boto3-stubs-lite[frauddetector]` - Type annotations for\n [FraudDetector](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_frauddetector/)\n service.\n- `boto3-stubs-lite[freetier]` - Type annotations for\n [FreeTier](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_freetier/)\n service.\n- `boto3-stubs-lite[fsx]` - Type annotations for\n [FSx](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_fsx/) service.\n- `boto3-stubs-lite[gamelift]` - Type annotations for\n [GameLift](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_gamelift/)\n service.\n- `boto3-stubs-lite[geo-maps]` - Type annotations for\n [LocationServiceMapsV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_maps/)\n service.\n- `boto3-stubs-lite[geo-places]` - Type annotations for\n [LocationServicePlacesV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_places/)\n service.\n- `boto3-stubs-lite[geo-routes]` - Type annotations for\n [LocationServiceRoutesV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_geo_routes/)\n service.\n- `boto3-stubs-lite[glacier]` - Type annotations for\n [Glacier](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_glacier/)\n service.\n- `boto3-stubs-lite[globalaccelerator]` - Type annotations for\n [GlobalAccelerator](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_globalaccelerator/)\n service.\n- `boto3-stubs-lite[glue]` - Type annotations for\n [Glue](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_glue/) service.\n- `boto3-stubs-lite[grafana]` - Type annotations for\n [ManagedGrafana](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_grafana/)\n service.\n- `boto3-stubs-lite[greengrass]` - Type annotations for\n [Greengrass](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_greengrass/)\n service.\n- `boto3-stubs-lite[greengrassv2]` - Type annotations for\n [GreengrassV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_greengrassv2/)\n service.\n- `boto3-stubs-lite[groundstation]` - Type annotations for\n [GroundStation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_groundstation/)\n service.\n- `boto3-stubs-lite[guardduty]` - Type annotations for\n [GuardDuty](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_guardduty/)\n service.\n- `boto3-stubs-lite[health]` - Type annotations for\n [Health](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_health/)\n service.\n- `boto3-stubs-lite[healthlake]` - Type annotations for\n [HealthLake](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_healthlake/)\n service.\n- `boto3-stubs-lite[iam]` - Type annotations for\n [IAM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iam/) service.\n- `boto3-stubs-lite[identitystore]` - Type annotations for\n [IdentityStore](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_identitystore/)\n service.\n- `boto3-stubs-lite[imagebuilder]` - Type annotations for\n [Imagebuilder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_imagebuilder/)\n service.\n- `boto3-stubs-lite[importexport]` - Type annotations for\n [ImportExport](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_importexport/)\n service.\n- `boto3-stubs-lite[inspector]` - Type annotations for\n [Inspector](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_inspector/)\n service.\n- `boto3-stubs-lite[inspector-scan]` - Type annotations for\n [Inspectorscan](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_inspector_scan/)\n service.\n- `boto3-stubs-lite[inspector2]` - Type annotations for\n [Inspector2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_inspector2/)\n service.\n- `boto3-stubs-lite[internetmonitor]` - Type annotations for\n [CloudWatchInternetMonitor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_internetmonitor/)\n service.\n- `boto3-stubs-lite[iot]` - Type annotations for\n [IoT](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot/) service.\n- `boto3-stubs-lite[iot-data]` - Type annotations for\n [IoTDataPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot_data/)\n service.\n- `boto3-stubs-lite[iot-jobs-data]` - Type annotations for\n [IoTJobsDataPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot_jobs_data/)\n service.\n- `boto3-stubs-lite[iot1click-devices]` - Type annotations for\n [IoT1ClickDevicesService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot1click_devices/)\n service.\n- `boto3-stubs-lite[iot1click-projects]` - Type annotations for\n [IoT1ClickProjects](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot1click_projects/)\n service.\n- `boto3-stubs-lite[iotanalytics]` - Type annotations for\n [IoTAnalytics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotanalytics/)\n service.\n- `boto3-stubs-lite[iotdeviceadvisor]` - Type annotations for\n [IoTDeviceAdvisor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotdeviceadvisor/)\n service.\n- `boto3-stubs-lite[iotevents]` - Type annotations for\n [IoTEvents](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotevents/)\n service.\n- `boto3-stubs-lite[iotevents-data]` - Type annotations for\n [IoTEventsData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotevents_data/)\n service.\n- `boto3-stubs-lite[iotfleethub]` - Type annotations for\n [IoTFleetHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotfleethub/)\n service.\n- `boto3-stubs-lite[iotfleetwise]` - Type annotations for\n [IoTFleetWise](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotfleetwise/)\n service.\n- `boto3-stubs-lite[iotsecuretunneling]` - Type annotations for\n [IoTSecureTunneling](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotsecuretunneling/)\n service.\n- `boto3-stubs-lite[iotsitewise]` - Type annotations for\n [IoTSiteWise](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotsitewise/)\n service.\n- `boto3-stubs-lite[iotthingsgraph]` - Type annotations for\n [IoTThingsGraph](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotthingsgraph/)\n service.\n- `boto3-stubs-lite[iottwinmaker]` - Type annotations for\n [IoTTwinMaker](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iottwinmaker/)\n service.\n- `boto3-stubs-lite[iotwireless]` - Type annotations for\n [IoTWireless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotwireless/)\n service.\n- `boto3-stubs-lite[ivs]` - Type annotations for\n [IVS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ivs/) service.\n- `boto3-stubs-lite[ivs-realtime]` - Type annotations for\n [Ivsrealtime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ivs_realtime/)\n service.\n- `boto3-stubs-lite[ivschat]` - Type annotations for\n [Ivschat](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ivschat/)\n service.\n- `boto3-stubs-lite[kafka]` - Type annotations for\n [Kafka](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kafka/)\n service.\n- `boto3-stubs-lite[kafkaconnect]` - Type annotations for\n [KafkaConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kafkaconnect/)\n service.\n- `boto3-stubs-lite[kendra]` - Type annotations for\n [Kendra](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kendra/)\n service.\n- `boto3-stubs-lite[kendra-ranking]` - Type annotations for\n [KendraRanking](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kendra_ranking/)\n service.\n- `boto3-stubs-lite[keyspaces]` - Type annotations for\n [Keyspaces](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_keyspaces/)\n service.\n- `boto3-stubs-lite[kinesis]` - Type annotations for\n [Kinesis](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/)\n service.\n- `boto3-stubs-lite[kinesis-video-archived-media]` - Type annotations for\n [KinesisVideoArchivedMedia](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis_video_archived_media/)\n service.\n- `boto3-stubs-lite[kinesis-video-media]` - Type annotations for\n [KinesisVideoMedia](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis_video_media/)\n service.\n- `boto3-stubs-lite[kinesis-video-signaling]` - Type annotations for\n [KinesisVideoSignalingChannels](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis_video_signaling/)\n service.\n- `boto3-stubs-lite[kinesis-video-webrtc-storage]` - Type annotations for\n [KinesisVideoWebRTCStorage](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis_video_webrtc_storage/)\n service.\n- `boto3-stubs-lite[kinesisanalytics]` - Type annotations for\n [KinesisAnalytics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesisanalytics/)\n service.\n- `boto3-stubs-lite[kinesisanalyticsv2]` - Type annotations for\n [KinesisAnalyticsV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesisanalyticsv2/)\n service.\n- `boto3-stubs-lite[kinesisvideo]` - Type annotations for\n [KinesisVideo](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesisvideo/)\n service.\n- `boto3-stubs-lite[kms]` - Type annotations for\n [KMS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kms/) service.\n- `boto3-stubs-lite[lakeformation]` - Type annotations for\n [LakeFormation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lakeformation/)\n service.\n- `boto3-stubs-lite[lambda]` - Type annotations for\n [Lambda](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda/)\n service.\n- `boto3-stubs-lite[launch-wizard]` - Type annotations for\n [LaunchWizard](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_launch_wizard/)\n service.\n- `boto3-stubs-lite[lex-models]` - Type annotations for\n [LexModelBuildingService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lex_models/)\n service.\n- `boto3-stubs-lite[lex-runtime]` - Type annotations for\n [LexRuntimeService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lex_runtime/)\n service.\n- `boto3-stubs-lite[lexv2-models]` - Type annotations for\n [LexModelsV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lexv2_models/)\n service.\n- `boto3-stubs-lite[lexv2-runtime]` - Type annotations for\n [LexRuntimeV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lexv2_runtime/)\n service.\n- `boto3-stubs-lite[license-manager]` - Type annotations for\n [LicenseManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_license_manager/)\n service.\n- `boto3-stubs-lite[license-manager-linux-subscriptions]` - Type annotations\n for\n [LicenseManagerLinuxSubscriptions](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_license_manager_linux_subscriptions/)\n service.\n- `boto3-stubs-lite[license-manager-user-subscriptions]` - Type annotations for\n [LicenseManagerUserSubscriptions](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_license_manager_user_subscriptions/)\n service.\n- `boto3-stubs-lite[lightsail]` - Type annotations for\n [Lightsail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lightsail/)\n service.\n- `boto3-stubs-lite[location]` - Type annotations for\n [LocationService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_location/)\n service.\n- `boto3-stubs-lite[logs]` - Type annotations for\n [CloudWatchLogs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_logs/)\n service.\n- `boto3-stubs-lite[lookoutequipment]` - Type annotations for\n [LookoutEquipment](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lookoutequipment/)\n service.\n- `boto3-stubs-lite[lookoutmetrics]` - Type annotations for\n [LookoutMetrics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lookoutmetrics/)\n service.\n- `boto3-stubs-lite[lookoutvision]` - Type annotations for\n [LookoutforVision](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lookoutvision/)\n service.\n- `boto3-stubs-lite[m2]` - Type annotations for\n [MainframeModernization](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_m2/)\n service.\n- `boto3-stubs-lite[machinelearning]` - Type annotations for\n [MachineLearning](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_machinelearning/)\n service.\n- `boto3-stubs-lite[macie2]` - Type annotations for\n [Macie2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_macie2/)\n service.\n- `boto3-stubs-lite[mailmanager]` - Type annotations for\n [MailManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mailmanager/)\n service.\n- `boto3-stubs-lite[managedblockchain]` - Type annotations for\n [ManagedBlockchain](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_managedblockchain/)\n service.\n- `boto3-stubs-lite[managedblockchain-query]` - Type annotations for\n [ManagedBlockchainQuery](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_managedblockchain_query/)\n service.\n- `boto3-stubs-lite[marketplace-agreement]` - Type annotations for\n [AgreementService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_agreement/)\n service.\n- `boto3-stubs-lite[marketplace-catalog]` - Type annotations for\n [MarketplaceCatalog](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_catalog/)\n service.\n- `boto3-stubs-lite[marketplace-deployment]` - Type annotations for\n [MarketplaceDeploymentService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_deployment/)\n service.\n- `boto3-stubs-lite[marketplace-entitlement]` - Type annotations for\n [MarketplaceEntitlementService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_entitlement/)\n service.\n- `boto3-stubs-lite[marketplace-reporting]` - Type annotations for\n [MarketplaceReportingService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_reporting/)\n service.\n- `boto3-stubs-lite[marketplacecommerceanalytics]` - Type annotations for\n [MarketplaceCommerceAnalytics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplacecommerceanalytics/)\n service.\n- `boto3-stubs-lite[mediaconnect]` - Type annotations for\n [MediaConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediaconnect/)\n service.\n- `boto3-stubs-lite[mediaconvert]` - Type annotations for\n [MediaConvert](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediaconvert/)\n service.\n- `boto3-stubs-lite[medialive]` - Type annotations for\n [MediaLive](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_medialive/)\n service.\n- `boto3-stubs-lite[mediapackage]` - Type annotations for\n [MediaPackage](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediapackage/)\n service.\n- `boto3-stubs-lite[mediapackage-vod]` - Type annotations for\n [MediaPackageVod](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediapackage_vod/)\n service.\n- `boto3-stubs-lite[mediapackagev2]` - Type annotations for\n [Mediapackagev2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediapackagev2/)\n service.\n- `boto3-stubs-lite[mediastore]` - Type annotations for\n [MediaStore](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediastore/)\n service.\n- `boto3-stubs-lite[mediastore-data]` - Type annotations for\n [MediaStoreData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediastore_data/)\n service.\n- `boto3-stubs-lite[mediatailor]` - Type annotations for\n [MediaTailor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediatailor/)\n service.\n- `boto3-stubs-lite[medical-imaging]` - Type annotations for\n [HealthImaging](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_medical_imaging/)\n service.\n- `boto3-stubs-lite[memorydb]` - Type annotations for\n [MemoryDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_memorydb/)\n service.\n- `boto3-stubs-lite[meteringmarketplace]` - Type annotations for\n [MarketplaceMetering](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_meteringmarketplace/)\n service.\n- `boto3-stubs-lite[mgh]` - Type annotations for\n [MigrationHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mgh/)\n service.\n- `boto3-stubs-lite[mgn]` - Type annotations for\n [Mgn](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mgn/) service.\n- `boto3-stubs-lite[migration-hub-refactor-spaces]` - Type annotations for\n [MigrationHubRefactorSpaces](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migration_hub_refactor_spaces/)\n service.\n- `boto3-stubs-lite[migrationhub-config]` - Type annotations for\n [MigrationHubConfig](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migrationhub_config/)\n service.\n- `boto3-stubs-lite[migrationhuborchestrator]` - Type annotations for\n [MigrationHubOrchestrator](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migrationhuborchestrator/)\n service.\n- `boto3-stubs-lite[migrationhubstrategy]` - Type annotations for\n [MigrationHubStrategyRecommendations](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migrationhubstrategy/)\n service.\n- `boto3-stubs-lite[mq]` - Type annotations for\n [MQ](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mq/) service.\n- `boto3-stubs-lite[mturk]` - Type annotations for\n [MTurk](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mturk/)\n service.\n- `boto3-stubs-lite[mwaa]` - Type annotations for\n [MWAA](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mwaa/) service.\n- `boto3-stubs-lite[neptune]` - Type annotations for\n [Neptune](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_neptune/)\n service.\n- `boto3-stubs-lite[neptune-graph]` - Type annotations for\n [NeptuneGraph](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_neptune_graph/)\n service.\n- `boto3-stubs-lite[neptunedata]` - Type annotations for\n [NeptuneData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_neptunedata/)\n service.\n- `boto3-stubs-lite[network-firewall]` - Type annotations for\n [NetworkFirewall](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_network_firewall/)\n service.\n- `boto3-stubs-lite[networkmanager]` - Type annotations for\n [NetworkManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_networkmanager/)\n service.\n- `boto3-stubs-lite[networkmonitor]` - Type annotations for\n [CloudWatchNetworkMonitor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_networkmonitor/)\n service.\n- `boto3-stubs-lite[oam]` - Type annotations for\n [CloudWatchObservabilityAccessManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_oam/)\n service.\n- `boto3-stubs-lite[omics]` - Type annotations for\n [Omics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_omics/)\n service.\n- `boto3-stubs-lite[opensearch]` - Type annotations for\n [OpenSearchService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opensearch/)\n service.\n- `boto3-stubs-lite[opensearchserverless]` - Type annotations for\n [OpenSearchServiceServerless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opensearchserverless/)\n service.\n- `boto3-stubs-lite[opsworks]` - Type annotations for\n [OpsWorks](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opsworks/)\n service.\n- `boto3-stubs-lite[opsworkscm]` - Type annotations for\n [OpsWorksCM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opsworkscm/)\n service.\n- `boto3-stubs-lite[organizations]` - Type annotations for\n [Organizations](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/)\n service.\n- `boto3-stubs-lite[osis]` - Type annotations for\n [OpenSearchIngestion](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_osis/)\n service.\n- `boto3-stubs-lite[outposts]` - Type annotations for\n [Outposts](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_outposts/)\n service.\n- `boto3-stubs-lite[panorama]` - Type annotations for\n [Panorama](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_panorama/)\n service.\n- `boto3-stubs-lite[payment-cryptography]` - Type annotations for\n [PaymentCryptographyControlPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_payment_cryptography/)\n service.\n- `boto3-stubs-lite[payment-cryptography-data]` - Type annotations for\n [PaymentCryptographyDataPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_payment_cryptography_data/)\n service.\n- `boto3-stubs-lite[pca-connector-ad]` - Type annotations for\n [PcaConnectorAd](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pca_connector_ad/)\n service.\n- `boto3-stubs-lite[pca-connector-scep]` - Type annotations for\n [PrivateCAConnectorforSCEP](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pca_connector_scep/)\n service.\n- `boto3-stubs-lite[pcs]` - Type annotations for\n [ParallelComputingService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pcs/)\n service.\n- `boto3-stubs-lite[personalize]` - Type annotations for\n [Personalize](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_personalize/)\n service.\n- `boto3-stubs-lite[personalize-events]` - Type annotations for\n [PersonalizeEvents](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_personalize_events/)\n service.\n- `boto3-stubs-lite[personalize-runtime]` - Type annotations for\n [PersonalizeRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_personalize_runtime/)\n service.\n- `boto3-stubs-lite[pi]` - Type annotations for\n [PI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pi/) service.\n- `boto3-stubs-lite[pinpoint]` - Type annotations for\n [Pinpoint](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint/)\n service.\n- `boto3-stubs-lite[pinpoint-email]` - Type annotations for\n [PinpointEmail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint_email/)\n service.\n- `boto3-stubs-lite[pinpoint-sms-voice]` - Type annotations for\n [PinpointSMSVoice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint_sms_voice/)\n service.\n- `boto3-stubs-lite[pinpoint-sms-voice-v2]` - Type annotations for\n [PinpointSMSVoiceV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint_sms_voice_v2/)\n service.\n- `boto3-stubs-lite[pipes]` - Type annotations for\n [EventBridgePipes](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pipes/)\n service.\n- `boto3-stubs-lite[polly]` - Type annotations for\n [Polly](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_polly/)\n service.\n- `boto3-stubs-lite[pricing]` - Type annotations for\n [Pricing](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pricing/)\n service.\n- `boto3-stubs-lite[privatenetworks]` - Type annotations for\n [Private5G](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_privatenetworks/)\n service.\n- `boto3-stubs-lite[proton]` - Type annotations for\n [Proton](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_proton/)\n service.\n- `boto3-stubs-lite[qapps]` - Type annotations for\n [QApps](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qapps/)\n service.\n- `boto3-stubs-lite[qbusiness]` - Type annotations for\n [QBusiness](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qbusiness/)\n service.\n- `boto3-stubs-lite[qconnect]` - Type annotations for\n [QConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qconnect/)\n service.\n- `boto3-stubs-lite[qldb]` - Type annotations for\n [QLDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qldb/) service.\n- `boto3-stubs-lite[qldb-session]` - Type annotations for\n [QLDBSession](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qldb_session/)\n service.\n- `boto3-stubs-lite[quicksight]` - Type annotations for\n [QuickSight](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_quicksight/)\n service.\n- `boto3-stubs-lite[ram]` - Type annotations for\n [RAM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ram/) service.\n- `boto3-stubs-lite[rbin]` - Type annotations for\n [RecycleBin](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rbin/)\n service.\n- `boto3-stubs-lite[rds]` - Type annotations for\n [RDS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rds/) service.\n- `boto3-stubs-lite[rds-data]` - Type annotations for\n [RDSDataService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rds_data/)\n service.\n- `boto3-stubs-lite[redshift]` - Type annotations for\n [Redshift](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/)\n service.\n- `boto3-stubs-lite[redshift-data]` - Type annotations for\n [RedshiftDataAPIService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift_data/)\n service.\n- `boto3-stubs-lite[redshift-serverless]` - Type annotations for\n [RedshiftServerless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift_serverless/)\n service.\n- `boto3-stubs-lite[rekognition]` - Type annotations for\n [Rekognition](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rekognition/)\n service.\n- `boto3-stubs-lite[repostspace]` - Type annotations for\n [RePostPrivate](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_repostspace/)\n service.\n- `boto3-stubs-lite[resiliencehub]` - Type annotations for\n [ResilienceHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resiliencehub/)\n service.\n- `boto3-stubs-lite[resource-explorer-2]` - Type annotations for\n [ResourceExplorer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resource_explorer_2/)\n service.\n- `boto3-stubs-lite[resource-groups]` - Type annotations for\n [ResourceGroups](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resource_groups/)\n service.\n- `boto3-stubs-lite[resourcegroupstaggingapi]` - Type annotations for\n [ResourceGroupsTaggingAPI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resourcegroupstaggingapi/)\n service.\n- `boto3-stubs-lite[robomaker]` - Type annotations for\n [RoboMaker](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_robomaker/)\n service.\n- `boto3-stubs-lite[rolesanywhere]` - Type annotations for\n [IAMRolesAnywhere](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rolesanywhere/)\n service.\n- `boto3-stubs-lite[route53]` - Type annotations for\n [Route53](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53/)\n service.\n- `boto3-stubs-lite[route53-recovery-cluster]` - Type annotations for\n [Route53RecoveryCluster](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53_recovery_cluster/)\n service.\n- `boto3-stubs-lite[route53-recovery-control-config]` - Type annotations for\n [Route53RecoveryControlConfig](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53_recovery_control_config/)\n service.\n- `boto3-stubs-lite[route53-recovery-readiness]` - Type annotations for\n [Route53RecoveryReadiness](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53_recovery_readiness/)\n service.\n- `boto3-stubs-lite[route53domains]` - Type annotations for\n [Route53Domains](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53domains/)\n service.\n- `boto3-stubs-lite[route53profiles]` - Type annotations for\n [Route53Profiles](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53profiles/)\n service.\n- `boto3-stubs-lite[route53resolver]` - Type annotations for\n [Route53Resolver](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53resolver/)\n service.\n- `boto3-stubs-lite[rum]` - Type annotations for\n [CloudWatchRUM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rum/)\n service.\n- `boto3-stubs-lite[s3]` - Type annotations for\n [S3](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3/) service.\n- `boto3-stubs-lite[s3control]` - Type annotations for\n [S3Control](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3control/)\n service.\n- `boto3-stubs-lite[s3outposts]` - Type annotations for\n [S3Outposts](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3outposts/)\n service.\n- `boto3-stubs-lite[sagemaker]` - Type annotations for\n [SageMaker](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/)\n service.\n- `boto3-stubs-lite[sagemaker-a2i-runtime]` - Type annotations for\n [AugmentedAIRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_a2i_runtime/)\n service.\n- `boto3-stubs-lite[sagemaker-edge]` - Type annotations for\n [SagemakerEdgeManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_edge/)\n service.\n- `boto3-stubs-lite[sagemaker-featurestore-runtime]` - Type annotations for\n [SageMakerFeatureStoreRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_featurestore_runtime/)\n service.\n- `boto3-stubs-lite[sagemaker-geospatial]` - Type annotations for\n [SageMakergeospatialcapabilities](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_geospatial/)\n service.\n- `boto3-stubs-lite[sagemaker-metrics]` - Type annotations for\n [SageMakerMetrics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_metrics/)\n service.\n- `boto3-stubs-lite[sagemaker-runtime]` - Type annotations for\n [SageMakerRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_runtime/)\n service.\n- `boto3-stubs-lite[savingsplans]` - Type annotations for\n [SavingsPlans](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_savingsplans/)\n service.\n- `boto3-stubs-lite[scheduler]` - Type annotations for\n [EventBridgeScheduler](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_scheduler/)\n service.\n- `boto3-stubs-lite[schemas]` - Type annotations for\n [Schemas](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_schemas/)\n service.\n- `boto3-stubs-lite[sdb]` - Type annotations for\n [SimpleDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sdb/)\n service.\n- `boto3-stubs-lite[secretsmanager]` - Type annotations for\n [SecretsManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_secretsmanager/)\n service.\n- `boto3-stubs-lite[securityhub]` - Type annotations for\n [SecurityHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_securityhub/)\n service.\n- `boto3-stubs-lite[securitylake]` - Type annotations for\n [SecurityLake](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_securitylake/)\n service.\n- `boto3-stubs-lite[serverlessrepo]` - Type annotations for\n [ServerlessApplicationRepository](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_serverlessrepo/)\n service.\n- `boto3-stubs-lite[service-quotas]` - Type annotations for\n [ServiceQuotas](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_service_quotas/)\n service.\n- `boto3-stubs-lite[servicecatalog]` - Type annotations for\n [ServiceCatalog](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_servicecatalog/)\n service.\n- `boto3-stubs-lite[servicecatalog-appregistry]` - Type annotations for\n [AppRegistry](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_servicecatalog_appregistry/)\n service.\n- `boto3-stubs-lite[servicediscovery]` - Type annotations for\n [ServiceDiscovery](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_servicediscovery/)\n service.\n- `boto3-stubs-lite[ses]` - Type annotations for\n [SES](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ses/) service.\n- `boto3-stubs-lite[sesv2]` - Type annotations for\n [SESV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sesv2/)\n service.\n- `boto3-stubs-lite[shield]` - Type annotations for\n [Shield](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_shield/)\n service.\n- `boto3-stubs-lite[signer]` - Type annotations for\n [Signer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_signer/)\n service.\n- `boto3-stubs-lite[simspaceweaver]` - Type annotations for\n [SimSpaceWeaver](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_simspaceweaver/)\n service.\n- `boto3-stubs-lite[sms]` - Type annotations for\n [SMS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sms/) service.\n- `boto3-stubs-lite[sms-voice]` - Type annotations for\n [PinpointSMSVoice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sms_voice/)\n service.\n- `boto3-stubs-lite[snow-device-management]` - Type annotations for\n [SnowDeviceManagement](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_snow_device_management/)\n service.\n- `boto3-stubs-lite[snowball]` - Type annotations for\n [Snowball](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_snowball/)\n service.\n- `boto3-stubs-lite[sns]` - Type annotations for\n [SNS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sns/) service.\n- `boto3-stubs-lite[socialmessaging]` - Type annotations for\n [EndUserMessagingSocial](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_socialmessaging/)\n service.\n- `boto3-stubs-lite[sqs]` - Type annotations for\n [SQS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sqs/) service.\n- `boto3-stubs-lite[ssm]` - Type annotations for\n [SSM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm/) service.\n- `boto3-stubs-lite[ssm-contacts]` - Type annotations for\n [SSMContacts](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_contacts/)\n service.\n- `boto3-stubs-lite[ssm-incidents]` - Type annotations for\n [SSMIncidents](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_incidents/)\n service.\n- `boto3-stubs-lite[ssm-quicksetup]` - Type annotations for\n [SystemsManagerQuickSetup](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_quicksetup/)\n service.\n- `boto3-stubs-lite[ssm-sap]` - Type annotations for\n [SsmSap](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_sap/)\n service.\n- `boto3-stubs-lite[sso]` - Type annotations for\n [SSO](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso/) service.\n- `boto3-stubs-lite[sso-admin]` - Type annotations for\n [SSOAdmin](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/)\n service.\n- `boto3-stubs-lite[sso-oidc]` - Type annotations for\n [SSOOIDC](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_oidc/)\n service.\n- `boto3-stubs-lite[stepfunctions]` - Type annotations for\n [SFN](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_stepfunctions/)\n service.\n- `boto3-stubs-lite[storagegateway]` - Type annotations for\n [StorageGateway](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_storagegateway/)\n service.\n- `boto3-stubs-lite[sts]` - Type annotations for\n [STS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sts/) service.\n- `boto3-stubs-lite[supplychain]` - Type annotations for\n [SupplyChain](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_supplychain/)\n service.\n- `boto3-stubs-lite[support]` - Type annotations for\n [Support](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_support/)\n service.\n- `boto3-stubs-lite[support-app]` - Type annotations for\n [SupportApp](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_support_app/)\n service.\n- `boto3-stubs-lite[swf]` - Type annotations for\n [SWF](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_swf/) service.\n- `boto3-stubs-lite[synthetics]` - Type annotations for\n [Synthetics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_synthetics/)\n service.\n- `boto3-stubs-lite[taxsettings]` - Type annotations for\n [TaxSettings](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_taxsettings/)\n service.\n- `boto3-stubs-lite[textract]` - Type annotations for\n [Textract](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_textract/)\n service.\n- `boto3-stubs-lite[timestream-influxdb]` - Type annotations for\n [TimestreamInfluxDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_influxdb/)\n service.\n- `boto3-stubs-lite[timestream-query]` - Type annotations for\n [TimestreamQuery](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_query/)\n service.\n- `boto3-stubs-lite[timestream-write]` - Type annotations for\n [TimestreamWrite](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/)\n service.\n- `boto3-stubs-lite[tnb]` - Type annotations for\n [TelcoNetworkBuilder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_tnb/)\n service.\n- `boto3-stubs-lite[transcribe]` - Type annotations for\n [TranscribeService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transcribe/)\n service.\n- `boto3-stubs-lite[transfer]` - Type annotations for\n [Transfer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/)\n service.\n- `boto3-stubs-lite[translate]` - Type annotations for\n [Translate](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_translate/)\n service.\n- `boto3-stubs-lite[trustedadvisor]` - Type annotations for\n [TrustedAdvisorPublicAPI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_trustedadvisor/)\n service.\n- `boto3-stubs-lite[verifiedpermissions]` - Type annotations for\n [VerifiedPermissions](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_verifiedpermissions/)\n service.\n- `boto3-stubs-lite[voice-id]` - Type annotations for\n [VoiceID](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_voice_id/)\n service.\n- `boto3-stubs-lite[vpc-lattice]` - Type annotations for\n [VPCLattice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_vpc_lattice/)\n service.\n- `boto3-stubs-lite[waf]` - Type annotations for\n [WAF](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf/) service.\n- `boto3-stubs-lite[waf-regional]` - Type annotations for\n [WAFRegional](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf_regional/)\n service.\n- `boto3-stubs-lite[wafv2]` - Type annotations for\n [WAFV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_wafv2/)\n service.\n- `boto3-stubs-lite[wellarchitected]` - Type annotations for\n [WellArchitected](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_wellarchitected/)\n service.\n- `boto3-stubs-lite[wisdom]` - Type annotations for\n [ConnectWisdomService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_wisdom/)\n service.\n- `boto3-stubs-lite[workdocs]` - Type annotations for\n [WorkDocs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workdocs/)\n service.\n- `boto3-stubs-lite[workmail]` - Type annotations for\n [WorkMail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workmail/)\n service.\n- `boto3-stubs-lite[workmailmessageflow]` - Type annotations for\n [WorkMailMessageFlow](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workmailmessageflow/)\n service.\n- `boto3-stubs-lite[workspaces]` - Type annotations for\n [WorkSpaces](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces/)\n service.\n- `boto3-stubs-lite[workspaces-thin-client]` - Type annotations for\n [WorkSpacesThinClient](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_thin_client/)\n service.\n- `boto3-stubs-lite[workspaces-web]` - Type annotations for\n [WorkSpacesWeb](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/)\n service.\n- `boto3-stubs-lite[xray]` - Type annotations for\n [XRay](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_xray/) service.\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Type annotations for boto3 1.35.54 generated with mypy-boto3-builder 8.1.4",
"version": "1.35.54",
"project_urls": {
"Documentation": "https://youtype.github.io/boto3_stubs_docs/",
"Homepage": "https://github.com/youtype/mypy_boto3_builder",
"Source": "https://github.com/youtype/mypy_boto3_builder",
"Tracker": "https://github.com/youtype/mypy_boto3_builder/issues"
},
"split_keywords": [
"boto3",
"type-annotations",
"boto3-stubs",
"mypy",
"typeshed",
"autocomplete"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "40cd96245cc860fb13d3a3cda57ab1989111255c61cc6f92fff7cd6db861c6e2",
"md5": "7aa8d53460382558d1c680124329d9f6",
"sha256": "9bdfcde9156c71485857d34f4d2f80071522a177f7d2e93db757afd820345135"
},
"downloads": -1,
"filename": "boto3_stubs_lite-1.35.54-py3-none-any.whl",
"has_sig": false,
"md5_digest": "7aa8d53460382558d1c680124329d9f6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 40140,
"upload_time": "2024-11-01T19:47:15",
"upload_time_iso_8601": "2024-11-01T19:47:15.168959Z",
"url": "https://files.pythonhosted.org/packages/40/cd/96245cc860fb13d3a3cda57ab1989111255c61cc6f92fff7cd6db861c6e2/boto3_stubs_lite-1.35.54-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e43016b61d40deca7456568e154358ad9d52a12d93de65752e6e1be1c5de4c3",
"md5": "99a77cf66b545ccfcc641dc6cadcc5ac",
"sha256": "7d5c5212267ffdef85d382a419d63a20de1556a33de22e152bcc95f552356c29"
},
"downloads": -1,
"filename": "boto3_stubs_lite-1.35.54.tar.gz",
"has_sig": false,
"md5_digest": "99a77cf66b545ccfcc641dc6cadcc5ac",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 69181,
"upload_time": "2024-11-01T19:47:18",
"upload_time_iso_8601": "2024-11-01T19:47:18.025479Z",
"url": "https://files.pythonhosted.org/packages/6e/43/016b61d40deca7456568e154358ad9d52a12d93de65752e6e1be1c5de4c3/boto3_stubs_lite-1.35.54.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-01 19:47:18",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "youtype",
"github_project": "mypy_boto3_builder",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "boto3-stubs-lite"
}