boto3-stubs


Nameboto3-stubs JSON
Version 1.34.72 PyPI version JSON
download
home_pagehttps://github.com/youtype/mypy_boto3_builder
SummaryType annotations for boto3 1.34.72 generated with mypy-boto3-builder 7.23.2
upload_time2024-03-27 19:48:06
maintainerNone
docs_urlNone
authorVlad Emelianov
requires_python>=3.8
licenseMIT License
keywords boto3 type-annotations boto3-stubs mypy typeshed autocomplete
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <a id="boto3-stubs"></a>

# boto3-stubs

[![PyPI - boto3-stubs](https://img.shields.io/pypi/v/boto3-stubs.svg?color=blue)](https://pypi.org/project/boto3-stubs)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/boto3-stubs.svg?color=blue)](https://pypi.org/project/boto3-stubs)
[![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)](https://pepy.tech/project/boto3-stubs)

![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)

Type annotations for
[boto3 1.34.72](https://boto3.amazonaws.com/v1/documentation/api/1.34.72/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 7.23.2](https://github.com/youtype/mypy_boto3_builder).

More information can be found in
[boto3-stubs 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](#boto3-stubs)
  - [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` to add type annotations for `boto3` package.

```bash
# install type annotations only for boto3
python -m pip install boto3-stubs

# install boto3 type annotations
# for ec2, s3, rds, lambda, sqs, dynamo and cloudformation
python -m pip install 'boto3-stubs[essential]'

# or install annotations for services you use
python -m pip install 'boto3-stubs[acm,apigateway]'

# or install annotations in sync with boto3 version
python -m pip install 'boto3-stubs[boto3]'


# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'boto3-stubs-lite[essential]'

```

<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` and
`boto3-stubs-essential` can be installed with:

```bash
conda install boto3-stubs boto3-stubs-essential
```

It is possible to list all of the versions of `boto3-stubs` available on your
platform with:

```bash
conda search boto3-stubs --channel conda-forge
```

<a id="how-to-uninstall"></a>

## How to uninstall

```bash
# uninstall boto3-stubs
python -m pip uninstall -y boto3-stubs
```

<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[essential]` in your environment:

```bash
python -m pip install 'boto3-stubs[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**.

Use `boto3-stubs` package instead for implicit type discovery.

<a id="emacs"></a>

### Emacs

- Install `boto3-stubs` with services you use in your environment:

```bash
python -m pip install 'boto3-stubs[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`

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[essential]` with services you use in your environment:

```bash
python -m pip install 'boto3-stubs[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[essential]` in your environment:

```bash
python -m pip install 'boto3-stubs[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[essential]` in your environment:

```bash
python -m pip install 'boto3-stubs[essential]'
```

Optionally, you can install `boto3-stubs` to `typings` folder.

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 [black](https://github.com/psf/black) and
  [isort](https://github.com/PyCQA/isort) 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` 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[all]` - Type annotations for all 379 services.
- `boto3-stubs[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[boto3]` - Install annotations in sync with `boto3` version.
- `boto3-stubs[accessanalyzer]` - Type annotations for
  [AccessAnalyzer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_accessanalyzer/)
  service.
- `boto3-stubs[account]` - Type annotations for
  [Account](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_account/)
  service.
- `boto3-stubs[acm]` - Type annotations for
  [ACM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_acm/) service.
- `boto3-stubs[acm-pca]` - Type annotations for
  [ACMPCA](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_acm_pca/)
  service.
- `boto3-stubs[alexaforbusiness]` - Type annotations for
  [AlexaForBusiness](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_alexaforbusiness/)
  service.
- `boto3-stubs[amp]` - Type annotations for
  [PrometheusService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amp/)
  service.
- `boto3-stubs[amplify]` - Type annotations for
  [Amplify](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amplify/)
  service.
- `boto3-stubs[amplifybackend]` - Type annotations for
  [AmplifyBackend](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amplifybackend/)
  service.
- `boto3-stubs[amplifyuibuilder]` - Type annotations for
  [AmplifyUIBuilder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amplifyuibuilder/)
  service.
- `boto3-stubs[apigateway]` - Type annotations for
  [APIGateway](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apigateway/)
  service.
- `boto3-stubs[apigatewaymanagementapi]` - Type annotations for
  [ApiGatewayManagementApi](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apigatewaymanagementapi/)
  service.
- `boto3-stubs[apigatewayv2]` - Type annotations for
  [ApiGatewayV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apigatewayv2/)
  service.
- `boto3-stubs[appconfig]` - Type annotations for
  [AppConfig](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/)
  service.
- `boto3-stubs[appconfigdata]` - Type annotations for
  [AppConfigData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/)
  service.
- `boto3-stubs[appfabric]` - Type annotations for
  [AppFabric](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appfabric/)
  service.
- `boto3-stubs[appflow]` - Type annotations for
  [Appflow](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appflow/)
  service.
- `boto3-stubs[appintegrations]` - Type annotations for
  [AppIntegrationsService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appintegrations/)
  service.
- `boto3-stubs[application-autoscaling]` - Type annotations for
  [ApplicationAutoScaling](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_application_autoscaling/)
  service.
- `boto3-stubs[application-insights]` - Type annotations for
  [ApplicationInsights](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_application_insights/)
  service.
- `boto3-stubs[applicationcostprofiler]` - Type annotations for
  [ApplicationCostProfiler](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_applicationcostprofiler/)
  service.
- `boto3-stubs[appmesh]` - Type annotations for
  [AppMesh](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appmesh/)
  service.
- `boto3-stubs[apprunner]` - Type annotations for
  [AppRunner](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apprunner/)
  service.
- `boto3-stubs[appstream]` - Type annotations for
  [AppStream](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appstream/)
  service.
- `boto3-stubs[appsync]` - Type annotations for
  [AppSync](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appsync/)
  service.
- `boto3-stubs[arc-zonal-shift]` - Type annotations for
  [ARCZonalShift](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_arc_zonal_shift/)
  service.
- `boto3-stubs[artifact]` - Type annotations for
  [Artifact](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_artifact/)
  service.
- `boto3-stubs[athena]` - Type annotations for
  [Athena](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/)
  service.
- `boto3-stubs[auditmanager]` - Type annotations for
  [AuditManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_auditmanager/)
  service.
- `boto3-stubs[autoscaling]` - Type annotations for
  [AutoScaling](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_autoscaling/)
  service.
- `boto3-stubs[autoscaling-plans]` - Type annotations for
  [AutoScalingPlans](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_autoscaling_plans/)
  service.
- `boto3-stubs[b2bi]` - Type annotations for
  [B2BI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_b2bi/) service.
- `boto3-stubs[backup]` - Type annotations for
  [Backup](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_backup/)
  service.
- `boto3-stubs[backup-gateway]` - Type annotations for
  [BackupGateway](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_backup_gateway/)
  service.
- `boto3-stubs[backupstorage]` - Type annotations for
  [BackupStorage](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_backupstorage/)
  service.
- `boto3-stubs[batch]` - Type annotations for
  [Batch](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_batch/)
  service.
- `boto3-stubs[bcm-data-exports]` - Type annotations for
  [BillingandCostManagementDataExports](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bcm_data_exports/)
  service.
- `boto3-stubs[bedrock]` - Type annotations for
  [Bedrock](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock/)
  service.
- `boto3-stubs[bedrock-agent]` - Type annotations for
  [AgentsforBedrock](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock_agent/)
  service.
- `boto3-stubs[bedrock-agent-runtime]` - Type annotations for
  [AgentsforBedrockRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock_agent_runtime/)
  service.
- `boto3-stubs[bedrock-runtime]` - Type annotations for
  [BedrockRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock_runtime/)
  service.
- `boto3-stubs[billingconductor]` - Type annotations for
  [BillingConductor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_billingconductor/)
  service.
- `boto3-stubs[braket]` - Type annotations for
  [Braket](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_braket/)
  service.
- `boto3-stubs[budgets]` - Type annotations for
  [Budgets](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_budgets/)
  service.
- `boto3-stubs[ce]` - Type annotations for
  [CostExplorer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ce/)
  service.
- `boto3-stubs[chatbot]` - Type annotations for
  [Chatbot](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chatbot/)
  service.
- `boto3-stubs[chime]` - Type annotations for
  [Chime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime/)
  service.
- `boto3-stubs[chime-sdk-identity]` - Type annotations for
  [ChimeSDKIdentity](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_identity/)
  service.
- `boto3-stubs[chime-sdk-media-pipelines]` - Type annotations for
  [ChimeSDKMediaPipelines](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_media_pipelines/)
  service.
- `boto3-stubs[chime-sdk-meetings]` - Type annotations for
  [ChimeSDKMeetings](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_meetings/)
  service.
- `boto3-stubs[chime-sdk-messaging]` - Type annotations for
  [ChimeSDKMessaging](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_messaging/)
  service.
- `boto3-stubs[chime-sdk-voice]` - Type annotations for
  [ChimeSDKVoice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime_sdk_voice/)
  service.
- `boto3-stubs[cleanrooms]` - Type annotations for
  [CleanRoomsService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cleanrooms/)
  service.
- `boto3-stubs[cleanroomsml]` - Type annotations for
  [CleanRoomsML](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cleanroomsml/)
  service.
- `boto3-stubs[cloud9]` - Type annotations for
  [Cloud9](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloud9/)
  service.
- `boto3-stubs[cloudcontrol]` - Type annotations for
  [CloudControlApi](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudcontrol/)
  service.
- `boto3-stubs[clouddirectory]` - Type annotations for
  [CloudDirectory](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_clouddirectory/)
  service.
- `boto3-stubs[cloudformation]` - Type annotations for
  [CloudFormation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudformation/)
  service.
- `boto3-stubs[cloudfront]` - Type annotations for
  [CloudFront](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudfront/)
  service.
- `boto3-stubs[cloudfront-keyvaluestore]` - Type annotations for
  [CloudFrontKeyValueStore](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudfront_keyvaluestore/)
  service.
- `boto3-stubs[cloudhsm]` - Type annotations for
  [CloudHSM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudhsm/)
  service.
- `boto3-stubs[cloudhsmv2]` - Type annotations for
  [CloudHSMV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudhsmv2/)
  service.
- `boto3-stubs[cloudsearch]` - Type annotations for
  [CloudSearch](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudsearch/)
  service.
- `boto3-stubs[cloudsearchdomain]` - Type annotations for
  [CloudSearchDomain](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudsearchdomain/)
  service.
- `boto3-stubs[cloudtrail]` - Type annotations for
  [CloudTrail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudtrail/)
  service.
- `boto3-stubs[cloudtrail-data]` - Type annotations for
  [CloudTrailDataService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudtrail_data/)
  service.
- `boto3-stubs[cloudwatch]` - Type annotations for
  [CloudWatch](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudwatch/)
  service.
- `boto3-stubs[codeartifact]` - Type annotations for
  [CodeArtifact](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeartifact/)
  service.
- `boto3-stubs[codebuild]` - Type annotations for
  [CodeBuild](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codebuild/)
  service.
- `boto3-stubs[codecatalyst]` - Type annotations for
  [CodeCatalyst](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codecatalyst/)
  service.
- `boto3-stubs[codecommit]` - Type annotations for
  [CodeCommit](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codecommit/)
  service.
- `boto3-stubs[codedeploy]` - Type annotations for
  [CodeDeploy](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codedeploy/)
  service.
- `boto3-stubs[codeguru-reviewer]` - Type annotations for
  [CodeGuruReviewer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeguru_reviewer/)
  service.
- `boto3-stubs[codeguru-security]` - Type annotations for
  [CodeGuruSecurity](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeguru_security/)
  service.
- `boto3-stubs[codeguruprofiler]` - Type annotations for
  [CodeGuruProfiler](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeguruprofiler/)
  service.
- `boto3-stubs[codepipeline]` - Type annotations for
  [CodePipeline](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codepipeline/)
  service.
- `boto3-stubs[codestar]` - Type annotations for
  [CodeStar](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codestar/)
  service.
- `boto3-stubs[codestar-connections]` - Type annotations for
  [CodeStarconnections](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codestar_connections/)
  service.
- `boto3-stubs[codestar-notifications]` - Type annotations for
  [CodeStarNotifications](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codestar_notifications/)
  service.
- `boto3-stubs[cognito-identity]` - Type annotations for
  [CognitoIdentity](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cognito_identity/)
  service.
- `boto3-stubs[cognito-idp]` - Type annotations for
  [CognitoIdentityProvider](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cognito_idp/)
  service.
- `boto3-stubs[cognito-sync]` - Type annotations for
  [CognitoSync](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cognito_sync/)
  service.
- `boto3-stubs[comprehend]` - Type annotations for
  [Comprehend](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_comprehend/)
  service.
- `boto3-stubs[comprehendmedical]` - Type annotations for
  [ComprehendMedical](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_comprehendmedical/)
  service.
- `boto3-stubs[compute-optimizer]` - Type annotations for
  [ComputeOptimizer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_compute_optimizer/)
  service.
- `boto3-stubs[config]` - Type annotations for
  [ConfigService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_config/)
  service.
- `boto3-stubs[connect]` - Type annotations for
  [Connect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connect/)
  service.
- `boto3-stubs[connect-contact-lens]` - Type annotations for
  [ConnectContactLens](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connect_contact_lens/)
  service.
- `boto3-stubs[connectcampaigns]` - Type annotations for
  [ConnectCampaignService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcampaigns/)
  service.
- `boto3-stubs[connectcases]` - Type annotations for
  [ConnectCases](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/)
  service.
- `boto3-stubs[connectparticipant]` - Type annotations for
  [ConnectParticipant](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectparticipant/)
  service.
- `boto3-stubs[controltower]` - Type annotations for
  [ControlTower](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_controltower/)
  service.
- `boto3-stubs[cost-optimization-hub]` - Type annotations for
  [CostOptimizationHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cost_optimization_hub/)
  service.
- `boto3-stubs[cur]` - Type annotations for
  [CostandUsageReportService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cur/)
  service.
- `boto3-stubs[customer-profiles]` - Type annotations for
  [CustomerProfiles](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_customer_profiles/)
  service.
- `boto3-stubs[databrew]` - Type annotations for
  [GlueDataBrew](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_databrew/)
  service.
- `boto3-stubs[dataexchange]` - Type annotations for
  [DataExchange](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dataexchange/)
  service.
- `boto3-stubs[datapipeline]` - Type annotations for
  [DataPipeline](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_datapipeline/)
  service.
- `boto3-stubs[datasync]` - Type annotations for
  [DataSync](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_datasync/)
  service.
- `boto3-stubs[datazone]` - Type annotations for
  [DataZone](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_datazone/)
  service.
- `boto3-stubs[dax]` - Type annotations for
  [DAX](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dax/) service.
- `boto3-stubs[detective]` - Type annotations for
  [Detective](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_detective/)
  service.
- `boto3-stubs[devicefarm]` - Type annotations for
  [DeviceFarm](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_devicefarm/)
  service.
- `boto3-stubs[devops-guru]` - Type annotations for
  [DevOpsGuru](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_devops_guru/)
  service.
- `boto3-stubs[directconnect]` - Type annotations for
  [DirectConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_directconnect/)
  service.
- `boto3-stubs[discovery]` - Type annotations for
  [ApplicationDiscoveryService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_discovery/)
  service.
- `boto3-stubs[dlm]` - Type annotations for
  [DLM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dlm/) service.
- `boto3-stubs[dms]` - Type annotations for
  [DatabaseMigrationService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dms/)
  service.
- `boto3-stubs[docdb]` - Type annotations for
  [DocDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_docdb/)
  service.
- `boto3-stubs[docdb-elastic]` - Type annotations for
  [DocDBElastic](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_docdb_elastic/)
  service.
- `boto3-stubs[drs]` - Type annotations for
  [drs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_drs/) service.
- `boto3-stubs[ds]` - Type annotations for
  [DirectoryService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ds/)
  service.
- `boto3-stubs[dynamodb]` - Type annotations for
  [DynamoDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/)
  service.
- `boto3-stubs[dynamodbstreams]` - Type annotations for
  [DynamoDBStreams](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodbstreams/)
  service.
- `boto3-stubs[ebs]` - Type annotations for
  [EBS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ebs/) service.
- `boto3-stubs[ec2]` - Type annotations for
  [EC2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ec2/) service.
- `boto3-stubs[ec2-instance-connect]` - Type annotations for
  [EC2InstanceConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ec2_instance_connect/)
  service.
- `boto3-stubs[ecr]` - Type annotations for
  [ECR](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ecr/) service.
- `boto3-stubs[ecr-public]` - Type annotations for
  [ECRPublic](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ecr_public/)
  service.
- `boto3-stubs[ecs]` - Type annotations for
  [ECS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ecs/) service.
- `boto3-stubs[efs]` - Type annotations for
  [EFS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_efs/) service.
- `boto3-stubs[eks]` - Type annotations for
  [EKS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/) service.
- `boto3-stubs[eks-auth]` - Type annotations for
  [EKSAuth](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks_auth/)
  service.
- `boto3-stubs[elastic-inference]` - Type annotations for
  [ElasticInference](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elastic_inference/)
  service.
- `boto3-stubs[elasticache]` - Type annotations for
  [ElastiCache](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elasticache/)
  service.
- `boto3-stubs[elasticbeanstalk]` - Type annotations for
  [ElasticBeanstalk](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elasticbeanstalk/)
  service.
- `boto3-stubs[elastictranscoder]` - Type annotations for
  [ElasticTranscoder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elastictranscoder/)
  service.
- `boto3-stubs[elb]` - Type annotations for
  [ElasticLoadBalancing](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elb/)
  service.
- `boto3-stubs[elbv2]` - Type annotations for
  [ElasticLoadBalancingv2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elbv2/)
  service.
- `boto3-stubs[emr]` - Type annotations for
  [EMR](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_emr/) service.
- `boto3-stubs[emr-containers]` - Type annotations for
  [EMRContainers](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_emr_containers/)
  service.
- `boto3-stubs[emr-serverless]` - Type annotations for
  [EMRServerless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_emr_serverless/)
  service.
- `boto3-stubs[entityresolution]` - Type annotations for
  [EntityResolution](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_entityresolution/)
  service.
- `boto3-stubs[es]` - Type annotations for
  [ElasticsearchService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_es/)
  service.
- `boto3-stubs[events]` - Type annotations for
  [EventBridge](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_events/)
  service.
- `boto3-stubs[evidently]` - Type annotations for
  [CloudWatchEvidently](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_evidently/)
  service.
- `boto3-stubs[finspace]` - Type annotations for
  [finspace](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_finspace/)
  service.
- `boto3-stubs[finspace-data]` - Type annotations for
  [FinSpaceData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_finspace_data/)
  service.
- `boto3-stubs[firehose]` - Type annotations for
  [Firehose](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_firehose/)
  service.
- `boto3-stubs[fis]` - Type annotations for
  [FIS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_fis/) service.
- `boto3-stubs[fms]` - Type annotations for
  [FMS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_fms/) service.
- `boto3-stubs[forecast]` - Type annotations for
  [ForecastService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_forecast/)
  service.
- `boto3-stubs[forecastquery]` - Type annotations for
  [ForecastQueryService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_forecastquery/)
  service.
- `boto3-stubs[frauddetector]` - Type annotations for
  [FraudDetector](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_frauddetector/)
  service.
- `boto3-stubs[freetier]` - Type annotations for
  [FreeTier](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_freetier/)
  service.
- `boto3-stubs[fsx]` - Type annotations for
  [FSx](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_fsx/) service.
- `boto3-stubs[gamelift]` - Type annotations for
  [GameLift](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_gamelift/)
  service.
- `boto3-stubs[glacier]` - Type annotations for
  [Glacier](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_glacier/)
  service.
- `boto3-stubs[globalaccelerator]` - Type annotations for
  [GlobalAccelerator](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_globalaccelerator/)
  service.
- `boto3-stubs[glue]` - Type annotations for
  [Glue](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_glue/) service.
- `boto3-stubs[grafana]` - Type annotations for
  [ManagedGrafana](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_grafana/)
  service.
- `boto3-stubs[greengrass]` - Type annotations for
  [Greengrass](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_greengrass/)
  service.
- `boto3-stubs[greengrassv2]` - Type annotations for
  [GreengrassV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_greengrassv2/)
  service.
- `boto3-stubs[groundstation]` - Type annotations for
  [GroundStation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_groundstation/)
  service.
- `boto3-stubs[guardduty]` - Type annotations for
  [GuardDuty](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_guardduty/)
  service.
- `boto3-stubs[health]` - Type annotations for
  [Health](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_health/)
  service.
- `boto3-stubs[healthlake]` - Type annotations for
  [HealthLake](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_healthlake/)
  service.
- `boto3-stubs[honeycode]` - Type annotations for
  [Honeycode](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_honeycode/)
  service.
- `boto3-stubs[iam]` - Type annotations for
  [IAM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iam/) service.
- `boto3-stubs[identitystore]` - Type annotations for
  [IdentityStore](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_identitystore/)
  service.
- `boto3-stubs[imagebuilder]` - Type annotations for
  [imagebuilder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_imagebuilder/)
  service.
- `boto3-stubs[importexport]` - Type annotations for
  [ImportExport](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_importexport/)
  service.
- `boto3-stubs[inspector]` - Type annotations for
  [Inspector](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_inspector/)
  service.
- `boto3-stubs[inspector-scan]` - Type annotations for
  [inspectorscan](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_inspector_scan/)
  service.
- `boto3-stubs[inspector2]` - Type annotations for
  [Inspector2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_inspector2/)
  service.
- `boto3-stubs[internetmonitor]` - Type annotations for
  [CloudWatchInternetMonitor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_internetmonitor/)
  service.
- `boto3-stubs[iot]` - Type annotations for
  [IoT](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot/) service.
- `boto3-stubs[iot-data]` - Type annotations for
  [IoTDataPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot_data/)
  service.
- `boto3-stubs[iot-jobs-data]` - Type annotations for
  [IoTJobsDataPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot_jobs_data/)
  service.
- `boto3-stubs[iot1click-devices]` - Type annotations for
  [IoT1ClickDevicesService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot1click_devices/)
  service.
- `boto3-stubs[iot1click-projects]` - Type annotations for
  [IoT1ClickProjects](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot1click_projects/)
  service.
- `boto3-stubs[iotanalytics]` - Type annotations for
  [IoTAnalytics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotanalytics/)
  service.
- `boto3-stubs[iotdeviceadvisor]` - Type annotations for
  [IoTDeviceAdvisor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotdeviceadvisor/)
  service.
- `boto3-stubs[iotevents]` - Type annotations for
  [IoTEvents](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotevents/)
  service.
- `boto3-stubs[iotevents-data]` - Type annotations for
  [IoTEventsData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotevents_data/)
  service.
- `boto3-stubs[iotfleethub]` - Type annotations for
  [IoTFleetHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotfleethub/)
  service.
- `boto3-stubs[iotfleetwise]` - Type annotations for
  [IoTFleetWise](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotfleetwise/)
  service.
- `boto3-stubs[iotsecuretunneling]` - Type annotations for
  [IoTSecureTunneling](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotsecuretunneling/)
  service.
- `boto3-stubs[iotsitewise]` - Type annotations for
  [IoTSiteWise](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotsitewise/)
  service.
- `boto3-stubs[iotthingsgraph]` - Type annotations for
  [IoTThingsGraph](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotthingsgraph/)
  service.
- `boto3-stubs[iottwinmaker]` - Type annotations for
  [IoTTwinMaker](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iottwinmaker/)
  service.
- `boto3-stubs[iotwireless]` - Type annotations for
  [IoTWireless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotwireless/)
  service.
- `boto3-stubs[ivs]` - Type annotations for
  [IVS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ivs/) service.
- `boto3-stubs[ivs-realtime]` - Type annotations for
  [ivsrealtime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ivs_realtime/)
  service.
- `boto3-stubs[ivschat]` - Type annotations for
  [ivschat](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ivschat/)
  service.
- `boto3-stubs[kafka]` - Type annotations for
  [Kafka](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kafka/)
  service.
- `boto3-stubs[kafkaconnect]` - Type annotations for
  [KafkaConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kafkaconnect/)
  service.
- `boto3-stubs[kendra]` - Type annotations for
  [kendra](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kendra/)
  service.
- `boto3-stubs[kendra-ranking]` - Type annotations for
  [KendraRanking](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kendra_ranking/)
  service.
- `boto3-stubs[keyspaces]` - Type annotations for
  [Keyspaces](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_keyspaces/)
  service.
- `boto3-stubs[kinesis]` - Type annotations for
  [Kinesis](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/)
  service.
- `boto3-stubs[kinesis-video-archived-media]` - Type annotations for
  [KinesisVideoArchivedMedia](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis_video_archived_media/)
  service.
- `boto3-stubs[kinesis-video-media]` - Type annotations for
  [KinesisVideoMedia](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis_video_media/)
  service.
- `boto3-stubs[kinesis-video-signaling]` - Type annotations for
  [KinesisVideoSignalingChannels](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis_video_signaling/)
  service.
- `boto3-stubs[kinesis-video-webrtc-storage]` - Type annotations for
  [KinesisVideoWebRTCStorage](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis_video_webrtc_storage/)
  service.
- `boto3-stubs[kinesisanalytics]` - Type annotations for
  [KinesisAnalytics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesisanalytics/)
  service.
- `boto3-stubs[kinesisanalyticsv2]` - Type annotations for
  [KinesisAnalyticsV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesisanalyticsv2/)
  service.
- `boto3-stubs[kinesisvideo]` - Type annotations for
  [KinesisVideo](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesisvideo/)
  service.
- `boto3-stubs[kms]` - Type annotations for
  [KMS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kms/) service.
- `boto3-stubs[lakeformation]` - Type annotations for
  [LakeFormation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lakeformation/)
  service.
- `boto3-stubs[lambda]` - Type annotations for
  [Lambda](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda/)
  service.
- `boto3-stubs[launch-wizard]` - Type annotations for
  [LaunchWizard](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_launch_wizard/)
  service.
- `boto3-stubs[lex-models]` - Type annotations for
  [LexModelBuildingService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lex_models/)
  service.
- `boto3-stubs[lex-runtime]` - Type annotations for
  [LexRuntimeService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lex_runtime/)
  service.
- `boto3-stubs[lexv2-models]` - Type annotations for
  [LexModelsV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lexv2_models/)
  service.
- `boto3-stubs[lexv2-runtime]` - Type annotations for
  [LexRuntimeV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lexv2_runtime/)
  service.
- `boto3-stubs[license-manager]` - Type annotations for
  [LicenseManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_license_manager/)
  service.
- `boto3-stubs[license-manager-linux-subscriptions]` - Type annotations for
  [LicenseManagerLinuxSubscriptions](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_license_manager_linux_subscriptions/)
  service.
- `boto3-stubs[license-manager-user-subscriptions]` - Type annotations for
  [LicenseManagerUserSubscriptions](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_license_manager_user_subscriptions/)
  service.
- `boto3-stubs[lightsail]` - Type annotations for
  [Lightsail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lightsail/)
  service.
- `boto3-stubs[location]` - Type annotations for
  [LocationService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_location/)
  service.
- `boto3-stubs[logs]` - Type annotations for
  [CloudWatchLogs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_logs/)
  service.
- `boto3-stubs[lookoutequipment]` - Type annotations for
  [LookoutEquipment](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lookoutequipment/)
  service.
- `boto3-stubs[lookoutmetrics]` - Type annotations for
  [LookoutMetrics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lookoutmetrics/)
  service.
- `boto3-stubs[lookoutvision]` - Type annotations for
  [LookoutforVision](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lookoutvision/)
  service.
- `boto3-stubs[m2]` - Type annotations for
  [MainframeModernization](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_m2/)
  service.
- `boto3-stubs[machinelearning]` - Type annotations for
  [MachineLearning](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_machinelearning/)
  service.
- `boto3-stubs[macie2]` - Type annotations for
  [Macie2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_macie2/)
  service.
- `boto3-stubs[managedblockchain]` - Type annotations for
  [ManagedBlockchain](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_managedblockchain/)
  service.
- `boto3-stubs[managedblockchain-query]` - Type annotations for
  [ManagedBlockchainQuery](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_managedblockchain_query/)
  service.
- `boto3-stubs[marketplace-agreement]` - Type annotations for
  [AgreementService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_agreement/)
  service.
- `boto3-stubs[marketplace-catalog]` - Type annotations for
  [MarketplaceCatalog](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_catalog/)
  service.
- `boto3-stubs[marketplace-deployment]` - Type annotations for
  [MarketplaceDeploymentService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_deployment/)
  service.
- `boto3-stubs[marketplace-entitlement]` - Type annotations for
  [MarketplaceEntitlementService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_entitlement/)
  service.
- `boto3-stubs[marketplacecommerceanalytics]` - Type annotations for
  [MarketplaceCommerceAnalytics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplacecommerceanalytics/)
  service.
- `boto3-stubs[mediaconnect]` - Type annotations for
  [MediaConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediaconnect/)
  service.
- `boto3-stubs[mediaconvert]` - Type annotations for
  [MediaConvert](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediaconvert/)
  service.
- `boto3-stubs[medialive]` - Type annotations for
  [MediaLive](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_medialive/)
  service.
- `boto3-stubs[mediapackage]` - Type annotations for
  [MediaPackage](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediapackage/)
  service.
- `boto3-stubs[mediapackage-vod]` - Type annotations for
  [MediaPackageVod](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediapackage_vod/)
  service.
- `boto3-stubs[mediapackagev2]` - Type annotations for
  [mediapackagev2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediapackagev2/)
  service.
- `boto3-stubs[mediastore]` - Type annotations for
  [MediaStore](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediastore/)
  service.
- `boto3-stubs[mediastore-data]` - Type annotations for
  [MediaStoreData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediastore_data/)
  service.
- `boto3-stubs[mediatailor]` - Type annotations for
  [MediaTailor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediatailor/)
  service.
- `boto3-stubs[medical-imaging]` - Type annotations for
  [HealthImaging](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_medical_imaging/)
  service.
- `boto3-stubs[memorydb]` - Type annotations for
  [MemoryDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_memorydb/)
  service.
- `boto3-stubs[meteringmarketplace]` - Type annotations for
  [MarketplaceMetering](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_meteringmarketplace/)
  service.
- `boto3-stubs[mgh]` - Type annotations for
  [MigrationHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mgh/)
  service.
- `boto3-stubs[mgn]` - Type annotations for
  [mgn](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mgn/) service.
- `boto3-stubs[migration-hub-refactor-spaces]` - Type annotations for
  [MigrationHubRefactorSpaces](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migration_hub_refactor_spaces/)
  service.
- `boto3-stubs[migrationhub-config]` - Type annotations for
  [MigrationHubConfig](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migrationhub_config/)
  service.
- `boto3-stubs[migrationhuborchestrator]` - Type annotations for
  [MigrationHubOrchestrator](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migrationhuborchestrator/)
  service.
- `boto3-stubs[migrationhubstrategy]` - Type annotations for
  [MigrationHubStrategyRecommendations](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migrationhubstrategy/)
  service.
- `boto3-stubs[mobile]` - Type annotations for
  [Mobile](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mobile/)
  service.
- `boto3-stubs[mq]` - Type annotations for
  [MQ](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mq/) service.
- `boto3-stubs[mturk]` - Type annotations for
  [MTurk](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mturk/)
  service.
- `boto3-stubs[mwaa]` - Type annotations for
  [MWAA](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mwaa/) service.
- `boto3-stubs[neptune]` - Type annotations for
  [Neptune](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_neptune/)
  service.
- `boto3-stubs[neptune-graph]` - Type annotations for
  [NeptuneGraph](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_neptune_graph/)
  service.
- `boto3-stubs[neptunedata]` - Type annotations for
  [NeptuneData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_neptunedata/)
  service.
- `boto3-stubs[network-firewall]` - Type annotations for
  [NetworkFirewall](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_network_firewall/)
  service.
- `boto3-stubs[networkmanager]` - Type annotations for
  [NetworkManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_networkmanager/)
  service.
- `boto3-stubs[networkmonitor]` - Type annotations for
  [CloudWatchNetworkMonitor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_networkmonitor/)
  service.
- `boto3-stubs[nimble]` - Type annotations for
  [NimbleStudio](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_nimble/)
  service.
- `boto3-stubs[oam]` - Type annotations for
  [CloudWatchObservabilityAccessManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_oam/)
  service.
- `boto3-stubs[omics]` - Type annotations for
  [Omics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_omics/)
  service.
- `boto3-stubs[opensearch]` - Type annotations for
  [OpenSearchService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opensearch/)
  service.
- `boto3-stubs[opensearchserverless]` - Type annotations for
  [OpenSearchServiceServerless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opensearchserverless/)
  service.
- `boto3-stubs[opsworks]` - Type annotations for
  [OpsWorks](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opsworks/)
  service.
- `boto3-stubs[opsworkscm]` - Type annotations for
  [OpsWorksCM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opsworkscm/)
  service.
- `boto3-stubs[organizations]` - Type annotations for
  [Organizations](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/)
  service.
- `boto3-stubs[osis]` - Type annotations for
  [OpenSearchIngestion](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_osis/)
  service.
- `boto3-stubs[outposts]` - Type annotations for
  [Outposts](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_outposts/)
  service.
- `boto3-stubs[panorama]` - Type annotations for
  [Panorama](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_panorama/)
  service.
- `boto3-stubs[payment-cryptography]` - Type annotations for
  [PaymentCryptographyControlPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_payment_cryptography/)
  service.
- `boto3-stubs[payment-cryptography-data]` - Type annotations for
  [PaymentCryptographyDataPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_payment_cryptography_data/)
  service.
- `boto3-stubs[pca-connector-ad]` - Type annotations for
  [PcaConnectorAd](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pca_connector_ad/)
  service.
- `boto3-stubs[personalize]` - Type annotations for
  [Personalize](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_personalize/)
  service.
- `boto3-stubs[personalize-events]` - Type annotations for
  [PersonalizeEvents](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_personalize_events/)
  service.
- `boto3-stubs[personalize-runtime]` - Type annotations for
  [PersonalizeRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_personalize_runtime/)
  service.
- `boto3-stubs[pi]` - Type annotations for
  [PI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pi/) service.
- `boto3-stubs[pinpoint]` - Type annotations for
  [Pinpoint](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint/)
  service.
- `boto3-stubs[pinpoint-email]` - Type annotations for
  [PinpointEmail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint_email/)
  service.
- `boto3-stubs[pinpoint-sms-voice]` - Type annotations for
  [PinpointSMSVoice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint_sms_voice/)
  service.
- `boto3-stubs[pinpoint-sms-voice-v2]` - Type annotations for
  [PinpointSMSVoiceV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint_sms_voice_v2/)
  service.
- `boto3-stubs[pipes]` - Type annotations for
  [EventBridgePipes](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pipes/)
  service.
- `boto3-stubs[polly]` - Type annotations for
  [Polly](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_polly/)
  service.
- `boto3-stubs[pricing]` - Type annotations for
  [Pricing](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pricing/)
  service.
- `boto3-stubs[privatenetworks]` - Type annotations for
  [Private5G](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_privatenetworks/)
  service.
- `boto3-stubs[proton]` - Type annotations for
  [Proton](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_proton/)
  service.
- `boto3-stubs[qbusiness]` - Type annotations for
  [QBusiness](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qbusiness/)
  service.
- `boto3-stubs[qconnect]` - Type annotations for
  [QConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qconnect/)
  service.
- `boto3-stubs[qldb]` - Type annotations for
  [QLDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qldb/) service.
- `boto3-stubs[qldb-session]` - Type annotations for
  [QLDBSession](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qldb_session/)
  service.
- `boto3-stubs[quicksight]` - Type annotations for
  [QuickSight](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_quicksight/)
  service.
- `boto3-stubs[ram]` - Type annotations for
  [RAM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ram/) service.
- `boto3-stubs[rbin]` - Type annotations for
  [RecycleBin](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rbin/)
  service.
- `boto3-stubs[rds]` - Type annotations for
  [RDS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rds/) service.
- `boto3-stubs[rds-data]` - Type annotations for
  [RDSDataService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rds_data/)
  service.
- `boto3-stubs[redshift]` - Type annotations for
  [Redshift](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/)
  service.
- `boto3-stubs[redshift-data]` - Type annotations for
  [RedshiftDataAPIService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift_data/)
  service.
- `boto3-stubs[redshift-serverless]` - Type annotations for
  [RedshiftServerless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift_serverless/)
  service.
- `boto3-stubs[rekognition]` - Type annotations for
  [Rekognition](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rekognition/)
  service.
- `boto3-stubs[repostspace]` - Type annotations for
  [rePostPrivate](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_repostspace/)
  service.
- `boto3-stubs[resiliencehub]` - Type annotations for
  [ResilienceHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resiliencehub/)
  service.
- `boto3-stubs[resource-explorer-2]` - Type annotations for
  [ResourceExplorer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resource_explorer_2/)
  service.
- `boto3-stubs[resource-groups]` - Type annotations for
  [ResourceGroups](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resource_groups/)
  service.
- `boto3-stubs[resourcegroupstaggingapi]` - Type annotations for
  [ResourceGroupsTaggingAPI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resourcegroupstaggingapi/)
  service.
- `boto3-stubs[robomaker]` - Type annotations for
  [RoboMaker](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_robomaker/)
  service.
- `boto3-stubs[rolesanywhere]` - Type annotations for
  [IAMRolesAnywhere](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rolesanywhere/)
  service.
- `boto3-stubs[route53]` - Type annotations for
  [Route53](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53/)
  service.
- `boto3-stubs[route53-recovery-cluster]` - Type annotations for
  [Route53RecoveryCluster](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53_recovery_cluster/)
  service.
- `boto3-stubs[route53-recovery-control-config]` - Type annotations for
  [Route53RecoveryControlConfig](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53_recovery_control_config/)
  service.
- `boto3-stubs[route53-recovery-readiness]` - Type annotations for
  [Route53RecoveryReadiness](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53_recovery_readiness/)
  service.
- `boto3-stubs[route53domains]` - Type annotations for
  [Route53Domains](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53domains/)
  service.
- `boto3-stubs[route53resolver]` - Type annotations for
  [Route53Resolver](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53resolver/)
  service.
- `boto3-stubs[rum]` - Type annotations for
  [CloudWatchRUM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rum/)
  service.
- `boto3-stubs[s3]` - Type annotations for
  [S3](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3/) service.
- `boto3-stubs[s3control]` - Type annotations for
  [S3Control](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3control/)
  service.
- `boto3-stubs[s3outposts]` - Type annotations for
  [S3Outposts](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3outposts/)
  service.
- `boto3-stubs[sagemaker]` - Type annotations for
  [SageMaker](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/)
  service.
- `boto3-stubs[sagemaker-a2i-runtime]` - Type annotations for
  [AugmentedAIRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_a2i_runtime/)
  service.
- `boto3-stubs[sagemaker-edge]` - Type annotations for
  [SagemakerEdgeManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_edge/)
  service.
- `boto3-stubs[sagemaker-featurestore-runtime]` - Type annotations for
  [SageMakerFeatureStoreRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_featurestore_runtime/)
  service.
- `boto3-stubs[sagemaker-geospatial]` - Type annotations for
  [SageMakergeospatialcapabilities](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_geospatial/)
  service.
- `boto3-stubs[sagemaker-metrics]` - Type annotations for
  [SageMakerMetrics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_metrics/)
  service.
- `boto3-stubs[sagemaker-runtime]` - Type annotations for
  [SageMakerRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_runtime/)
  service.
- `boto3-stubs[savingsplans]` - Type annotations for
  [SavingsPlans](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_savingsplans/)
  service.
- `boto3-stubs[scheduler]` - Type annotations for
  [EventBridgeScheduler](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_scheduler/)
  service.
- `boto3-stubs[schemas]` - Type annotations for
  [Schemas](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_schemas/)
  service.
- `boto3-stubs[sdb]` - Type annotations for
  [SimpleDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sdb/)
  service.
- `boto3-stubs[secretsmanager]` - Type annotations for
  [SecretsManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_secretsmanager/)
  service.
- `boto3-stubs[securityhub]` - Type annotations for
  [SecurityHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_securityhub/)
  service.
- `boto3-stubs[securitylake]` - Type annotations for
  [SecurityLake](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_securitylake/)
  service.
- `boto3-stubs[serverlessrepo]` - Type annotations for
  [ServerlessApplicationRepository](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_serverlessrepo/)
  service.
- `boto3-stubs[service-quotas]` - Type annotations for
  [ServiceQuotas](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_service_quotas/)
  service.
- `boto3-stubs[servicecatalog]` - Type annotations for
  [ServiceCatalog](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_servicecatalog/)
  service.
- `boto3-stubs[servicecatalog-appregistry]` - Type annotations for
  [AppRegistry](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_servicecatalog_appregistry/)
  service.
- `boto3-stubs[servicediscovery]` - Type annotations for
  [ServiceDiscovery](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_servicediscovery/)
  service.
- `boto3-stubs[ses]` - Type annotations for
  [SES](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ses/) service.
- `boto3-stubs[sesv2]` - Type annotations for
  [SESV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sesv2/)
  service.
- `boto3-stubs[shield]` - Type annotations for
  [Shield](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_shield/)
  service.
- `boto3-stubs[signer]` - Type annotations for
  [signer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_signer/)
  service.
- `boto3-stubs[simspaceweaver]` - Type annotations for
  [SimSpaceWeaver](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_simspaceweaver/)
  service.
- `boto3-stubs[sms]` - Type annotations for
  [SMS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sms/) service.
- `boto3-stubs[sms-voice]` - Type annotations for
  [PinpointSMSVoice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sms_voice/)
  service.
- `boto3-stubs[snow-device-management]` - Type annotations for
  [SnowDeviceManagement](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_snow_device_management/)
  service.
- `boto3-stubs[snowball]` - Type annotations for
  [Snowball](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_snowball/)
  service.
- `boto3-stubs[sns]` - Type annotations for
  [SNS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sns/) service.
- `boto3-stubs[sqs]` - Type annotations for
  [SQS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sqs/) service.
- `boto3-stubs[ssm]` - Type annotations for
  [SSM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm/) service.
- `boto3-stubs[ssm-contacts]` - Type annotations for
  [SSMContacts](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_contacts/)
  service.
- `boto3-stubs[ssm-incidents]` - Type annotations for
  [SSMIncidents](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_incidents/)
  service.
- `boto3-stubs[ssm-sap]` - Type annotations for
  [SsmSap](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_sap/)
  service.
- `boto3-stubs[sso]` - Type annotations for
  [SSO](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso/) service.
- `boto3-stubs[sso-admin]` - Type annotations for
  [SSOAdmin](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/)
  service.
- `boto3-stubs[sso-oidc]` - Type annotations for
  [SSOOIDC](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_oidc/)
  service.
- `boto3-stubs[stepfunctions]` - Type annotations for
  [SFN](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_stepfunctions/)
  service.
- `boto3-stubs[storagegateway]` - Type annotations for
  [StorageGateway](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_storagegateway/)
  service.
- `boto3-stubs[sts]` - Type annotations for
  [STS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sts/) service.
- `boto3-stubs[supplychain]` - Type annotations for
  [SupplyChain](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_supplychain/)
  service.
- `boto3-stubs[support]` - Type annotations for
  [Support](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_support/)
  service.
- `boto3-stubs[support-app]` - Type annotations for
  [SupportApp](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_support_app/)
  service.
- `boto3-stubs[swf]` - Type annotations for
  [SWF](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_swf/) service.
- `boto3-stubs[synthetics]` - Type annotations for
  [Synthetics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_synthetics/)
  service.
- `boto3-stubs[textract]` - Type annotations for
  [Textract](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_textract/)
  service.
- `boto3-stubs[timestream-influxdb]` - Type annotations for
  [TimestreamInfluxDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_influxdb/)
  service.
- `boto3-stubs[timestream-query]` - Type annotations for
  [TimestreamQuery](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_query/)
  service.
- `boto3-stubs[timestream-write]` - Type annotations for
  [TimestreamWrite](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/)
  service.
- `boto3-stubs[tnb]` - Type annotations for
  [TelcoNetworkBuilder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_tnb/)
  service.
- `boto3-stubs[transcribe]` - Type annotations for
  [TranscribeService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transcribe/)
  service.
- `boto3-stubs[transfer]` - Type annotations for
  [Transfer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/)
  service.
- `boto3-stubs[translate]` - Type annotations for
  [Translate](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_translate/)
  service.
- `boto3-stubs[trustedadvisor]` - Type annotations for
  [TrustedAdvisorPublicAPI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_trustedadvisor/)
  service.
- `boto3-stubs[verifiedpermissions]` - Type annotations for
  [VerifiedPermissions](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_verifiedpermissions/)
  service.
- `boto3-stubs[voice-id]` - Type annotations for
  [VoiceID](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_voice_id/)
  service.
- `boto3-stubs[vpc-lattice]` - Type annotations for
  [VPCLattice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_vpc_lattice/)
  service.
- `boto3-stubs[waf]` - Type annotations for
  [WAF](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf/) service.
- `boto3-stubs[waf-regional]` - Type annotations for
  [WAFRegional](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf_regional/)
  service.
- `boto3-stubs[wafv2]` - Type annotations for
  [WAFV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_wafv2/)
  service.
- `boto3-stubs[wellarchitected]` - Type annotations for
  [WellArchitected](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_wellarchitected/)
  service.
- `boto3-stubs[wisdom]` - Type annotations for
  [ConnectWisdomService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_wisdom/)
  service.
- `boto3-stubs[workdocs]` - Type annotations for
  [WorkDocs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workdocs/)
  service.
- `boto3-stubs[worklink]` - Type annotations for
  [WorkLink](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_worklink/)
  service.
- `boto3-stubs[workmail]` - Type annotations for
  [WorkMail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workmail/)
  service.
- `boto3-stubs[workmailmessageflow]` - Type annotations for
  [WorkMailMessageFlow](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workmailmessageflow/)
  service.
- `boto3-stubs[workspaces]` - Type annotations for
  [WorkSpaces](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces/)
  service.
- `boto3-stubs[workspaces-thin-client]` - Type annotations for
  [WorkSpacesThinClient](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_thin_client/)
  service.
- `boto3-stubs[workspaces-web]` - Type annotations for
  [WorkSpacesWeb](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/)
  service.
- `boto3-stubs[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",
    "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/a1/5c/51d7b9444aaaa20569d3fc1053f2e790ae05d50f1342951e5b5038301a0e/boto3-stubs-1.34.72.tar.gz",
    "platform": null,
    "description": "<a id=\"boto3-stubs\"></a>\n\n# boto3-stubs\n\n[![PyPI - boto3-stubs](https://img.shields.io/pypi/v/boto3-stubs.svg?color=blue)](https://pypi.org/project/boto3-stubs)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/boto3-stubs.svg?color=blue)](https://pypi.org/project/boto3-stubs)\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)](https://pepy.tech/project/boto3-stubs)\n\n![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)\n\nType annotations for\n[boto3 1.34.72](https://boto3.amazonaws.com/v1/documentation/api/1.34.72/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 7.23.2](https://github.com/youtype/mypy_boto3_builder).\n\nMore information can be found in\n[boto3-stubs 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](#boto3-stubs)\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` to add type annotations for `boto3` package.\n\n```bash\n# install type annotations only for boto3\npython -m pip install boto3-stubs\n\n# install boto3 type annotations\n# for ec2, s3, rds, lambda, sqs, dynamo and cloudformation\npython -m pip install 'boto3-stubs[essential]'\n\n# or install annotations for services you use\npython -m pip install 'boto3-stubs[acm,apigateway]'\n\n# or install annotations in sync with boto3 version\npython -m pip install 'boto3-stubs[boto3]'\n\n\n# Lite version does not provide session.client/resource overloads\n# it is more RAM-friendly, but requires explicit type annotations\npython -m pip install 'boto3-stubs-lite[essential]'\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` and\n`boto3-stubs-essential` can be installed with:\n\n```bash\nconda install boto3-stubs boto3-stubs-essential\n```\n\nIt is possible to list all of the versions of `boto3-stubs` available on your\nplatform with:\n\n```bash\nconda search boto3-stubs --channel conda-forge\n```\n\n<a id=\"how-to-uninstall\"></a>\n\n## How to uninstall\n\n```bash\n# uninstall boto3-stubs\npython -m pip uninstall -y boto3-stubs\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[essential]` in your environment:\n\n```bash\npython -m pip install 'boto3-stubs[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\nUse `boto3-stubs` package instead for implicit type discovery.\n\n<a id=\"emacs\"></a>\n\n### Emacs\n\n- Install `boto3-stubs` with services you use in your environment:\n\n```bash\npython -m pip install 'boto3-stubs[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 `boto3-stubs`\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[essential]` with services you use in your environment:\n\n```bash\npython -m pip install 'boto3-stubs[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[essential]` in your environment:\n\n```bash\npython -m pip install 'boto3-stubs[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[essential]` in your environment:\n\n```bash\npython -m pip install 'boto3-stubs[essential]'\n```\n\nOptionally, you can install `boto3-stubs` to `typings` folder.\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 [black](https://github.com/psf/black) and\n  [isort](https://github.com/PyCQA/isort) 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` 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[all]` - Type annotations for all 379 services.\n- `boto3-stubs[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[boto3]` - Install annotations in sync with `boto3` version.\n- `boto3-stubs[accessanalyzer]` - Type annotations for\n  [AccessAnalyzer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_accessanalyzer/)\n  service.\n- `boto3-stubs[account]` - Type annotations for\n  [Account](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_account/)\n  service.\n- `boto3-stubs[acm]` - Type annotations for\n  [ACM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_acm/) service.\n- `boto3-stubs[acm-pca]` - Type annotations for\n  [ACMPCA](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_acm_pca/)\n  service.\n- `boto3-stubs[alexaforbusiness]` - Type annotations for\n  [AlexaForBusiness](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_alexaforbusiness/)\n  service.\n- `boto3-stubs[amp]` - Type annotations for\n  [PrometheusService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amp/)\n  service.\n- `boto3-stubs[amplify]` - Type annotations for\n  [Amplify](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amplify/)\n  service.\n- `boto3-stubs[amplifybackend]` - Type annotations for\n  [AmplifyBackend](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amplifybackend/)\n  service.\n- `boto3-stubs[amplifyuibuilder]` - Type annotations for\n  [AmplifyUIBuilder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_amplifyuibuilder/)\n  service.\n- `boto3-stubs[apigateway]` - Type annotations for\n  [APIGateway](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apigateway/)\n  service.\n- `boto3-stubs[apigatewaymanagementapi]` - Type annotations for\n  [ApiGatewayManagementApi](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apigatewaymanagementapi/)\n  service.\n- `boto3-stubs[apigatewayv2]` - Type annotations for\n  [ApiGatewayV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apigatewayv2/)\n  service.\n- `boto3-stubs[appconfig]` - Type annotations for\n  [AppConfig](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfig/)\n  service.\n- `boto3-stubs[appconfigdata]` - Type annotations for\n  [AppConfigData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appconfigdata/)\n  service.\n- `boto3-stubs[appfabric]` - Type annotations for\n  [AppFabric](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appfabric/)\n  service.\n- `boto3-stubs[appflow]` - Type annotations for\n  [Appflow](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appflow/)\n  service.\n- `boto3-stubs[appintegrations]` - Type annotations for\n  [AppIntegrationsService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appintegrations/)\n  service.\n- `boto3-stubs[application-autoscaling]` - Type annotations for\n  [ApplicationAutoScaling](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_application_autoscaling/)\n  service.\n- `boto3-stubs[application-insights]` - Type annotations for\n  [ApplicationInsights](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_application_insights/)\n  service.\n- `boto3-stubs[applicationcostprofiler]` - Type annotations for\n  [ApplicationCostProfiler](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_applicationcostprofiler/)\n  service.\n- `boto3-stubs[appmesh]` - Type annotations for\n  [AppMesh](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appmesh/)\n  service.\n- `boto3-stubs[apprunner]` - Type annotations for\n  [AppRunner](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_apprunner/)\n  service.\n- `boto3-stubs[appstream]` - Type annotations for\n  [AppStream](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appstream/)\n  service.\n- `boto3-stubs[appsync]` - Type annotations for\n  [AppSync](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_appsync/)\n  service.\n- `boto3-stubs[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[artifact]` - Type annotations for\n  [Artifact](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_artifact/)\n  service.\n- `boto3-stubs[athena]` - Type annotations for\n  [Athena](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_athena/)\n  service.\n- `boto3-stubs[auditmanager]` - Type annotations for\n  [AuditManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_auditmanager/)\n  service.\n- `boto3-stubs[autoscaling]` - Type annotations for\n  [AutoScaling](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_autoscaling/)\n  service.\n- `boto3-stubs[autoscaling-plans]` - Type annotations for\n  [AutoScalingPlans](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_autoscaling_plans/)\n  service.\n- `boto3-stubs[b2bi]` - Type annotations for\n  [B2BI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_b2bi/) service.\n- `boto3-stubs[backup]` - Type annotations for\n  [Backup](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_backup/)\n  service.\n- `boto3-stubs[backup-gateway]` - Type annotations for\n  [BackupGateway](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_backup_gateway/)\n  service.\n- `boto3-stubs[backupstorage]` - Type annotations for\n  [BackupStorage](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_backupstorage/)\n  service.\n- `boto3-stubs[batch]` - Type annotations for\n  [Batch](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_batch/)\n  service.\n- `boto3-stubs[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[bedrock]` - Type annotations for\n  [Bedrock](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock/)\n  service.\n- `boto3-stubs[bedrock-agent]` - Type annotations for\n  [AgentsforBedrock](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock_agent/)\n  service.\n- `boto3-stubs[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[bedrock-runtime]` - Type annotations for\n  [BedrockRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_bedrock_runtime/)\n  service.\n- `boto3-stubs[billingconductor]` - Type annotations for\n  [BillingConductor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_billingconductor/)\n  service.\n- `boto3-stubs[braket]` - Type annotations for\n  [Braket](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_braket/)\n  service.\n- `boto3-stubs[budgets]` - Type annotations for\n  [Budgets](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_budgets/)\n  service.\n- `boto3-stubs[ce]` - Type annotations for\n  [CostExplorer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ce/)\n  service.\n- `boto3-stubs[chatbot]` - Type annotations for\n  [Chatbot](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chatbot/)\n  service.\n- `boto3-stubs[chime]` - Type annotations for\n  [Chime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_chime/)\n  service.\n- `boto3-stubs[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[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[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[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[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[cleanrooms]` - Type annotations for\n  [CleanRoomsService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cleanrooms/)\n  service.\n- `boto3-stubs[cleanroomsml]` - Type annotations for\n  [CleanRoomsML](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cleanroomsml/)\n  service.\n- `boto3-stubs[cloud9]` - Type annotations for\n  [Cloud9](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloud9/)\n  service.\n- `boto3-stubs[cloudcontrol]` - Type annotations for\n  [CloudControlApi](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudcontrol/)\n  service.\n- `boto3-stubs[clouddirectory]` - Type annotations for\n  [CloudDirectory](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_clouddirectory/)\n  service.\n- `boto3-stubs[cloudformation]` - Type annotations for\n  [CloudFormation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudformation/)\n  service.\n- `boto3-stubs[cloudfront]` - Type annotations for\n  [CloudFront](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudfront/)\n  service.\n- `boto3-stubs[cloudfront-keyvaluestore]` - Type annotations for\n  [CloudFrontKeyValueStore](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudfront_keyvaluestore/)\n  service.\n- `boto3-stubs[cloudhsm]` - Type annotations for\n  [CloudHSM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudhsm/)\n  service.\n- `boto3-stubs[cloudhsmv2]` - Type annotations for\n  [CloudHSMV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudhsmv2/)\n  service.\n- `boto3-stubs[cloudsearch]` - Type annotations for\n  [CloudSearch](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudsearch/)\n  service.\n- `boto3-stubs[cloudsearchdomain]` - Type annotations for\n  [CloudSearchDomain](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudsearchdomain/)\n  service.\n- `boto3-stubs[cloudtrail]` - Type annotations for\n  [CloudTrail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudtrail/)\n  service.\n- `boto3-stubs[cloudtrail-data]` - Type annotations for\n  [CloudTrailDataService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudtrail_data/)\n  service.\n- `boto3-stubs[cloudwatch]` - Type annotations for\n  [CloudWatch](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cloudwatch/)\n  service.\n- `boto3-stubs[codeartifact]` - Type annotations for\n  [CodeArtifact](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeartifact/)\n  service.\n- `boto3-stubs[codebuild]` - Type annotations for\n  [CodeBuild](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codebuild/)\n  service.\n- `boto3-stubs[codecatalyst]` - Type annotations for\n  [CodeCatalyst](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codecatalyst/)\n  service.\n- `boto3-stubs[codecommit]` - Type annotations for\n  [CodeCommit](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codecommit/)\n  service.\n- `boto3-stubs[codedeploy]` - Type annotations for\n  [CodeDeploy](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codedeploy/)\n  service.\n- `boto3-stubs[codeguru-reviewer]` - Type annotations for\n  [CodeGuruReviewer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeguru_reviewer/)\n  service.\n- `boto3-stubs[codeguru-security]` - Type annotations for\n  [CodeGuruSecurity](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeguru_security/)\n  service.\n- `boto3-stubs[codeguruprofiler]` - Type annotations for\n  [CodeGuruProfiler](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codeguruprofiler/)\n  service.\n- `boto3-stubs[codepipeline]` - Type annotations for\n  [CodePipeline](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codepipeline/)\n  service.\n- `boto3-stubs[codestar]` - Type annotations for\n  [CodeStar](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codestar/)\n  service.\n- `boto3-stubs[codestar-connections]` - Type annotations for\n  [CodeStarconnections](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codestar_connections/)\n  service.\n- `boto3-stubs[codestar-notifications]` - Type annotations for\n  [CodeStarNotifications](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_codestar_notifications/)\n  service.\n- `boto3-stubs[cognito-identity]` - Type annotations for\n  [CognitoIdentity](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cognito_identity/)\n  service.\n- `boto3-stubs[cognito-idp]` - Type annotations for\n  [CognitoIdentityProvider](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cognito_idp/)\n  service.\n- `boto3-stubs[cognito-sync]` - Type annotations for\n  [CognitoSync](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cognito_sync/)\n  service.\n- `boto3-stubs[comprehend]` - Type annotations for\n  [Comprehend](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_comprehend/)\n  service.\n- `boto3-stubs[comprehendmedical]` - Type annotations for\n  [ComprehendMedical](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_comprehendmedical/)\n  service.\n- `boto3-stubs[compute-optimizer]` - Type annotations for\n  [ComputeOptimizer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_compute_optimizer/)\n  service.\n- `boto3-stubs[config]` - Type annotations for\n  [ConfigService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_config/)\n  service.\n- `boto3-stubs[connect]` - Type annotations for\n  [Connect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connect/)\n  service.\n- `boto3-stubs[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[connectcampaigns]` - Type annotations for\n  [ConnectCampaignService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcampaigns/)\n  service.\n- `boto3-stubs[connectcases]` - Type annotations for\n  [ConnectCases](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectcases/)\n  service.\n- `boto3-stubs[connectparticipant]` - Type annotations for\n  [ConnectParticipant](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_connectparticipant/)\n  service.\n- `boto3-stubs[controltower]` - Type annotations for\n  [ControlTower](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_controltower/)\n  service.\n- `boto3-stubs[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[cur]` - Type annotations for\n  [CostandUsageReportService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_cur/)\n  service.\n- `boto3-stubs[customer-profiles]` - Type annotations for\n  [CustomerProfiles](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_customer_profiles/)\n  service.\n- `boto3-stubs[databrew]` - Type annotations for\n  [GlueDataBrew](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_databrew/)\n  service.\n- `boto3-stubs[dataexchange]` - Type annotations for\n  [DataExchange](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dataexchange/)\n  service.\n- `boto3-stubs[datapipeline]` - Type annotations for\n  [DataPipeline](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_datapipeline/)\n  service.\n- `boto3-stubs[datasync]` - Type annotations for\n  [DataSync](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_datasync/)\n  service.\n- `boto3-stubs[datazone]` - Type annotations for\n  [DataZone](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_datazone/)\n  service.\n- `boto3-stubs[dax]` - Type annotations for\n  [DAX](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dax/) service.\n- `boto3-stubs[detective]` - Type annotations for\n  [Detective](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_detective/)\n  service.\n- `boto3-stubs[devicefarm]` - Type annotations for\n  [DeviceFarm](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_devicefarm/)\n  service.\n- `boto3-stubs[devops-guru]` - Type annotations for\n  [DevOpsGuru](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_devops_guru/)\n  service.\n- `boto3-stubs[directconnect]` - Type annotations for\n  [DirectConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_directconnect/)\n  service.\n- `boto3-stubs[discovery]` - Type annotations for\n  [ApplicationDiscoveryService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_discovery/)\n  service.\n- `boto3-stubs[dlm]` - Type annotations for\n  [DLM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dlm/) service.\n- `boto3-stubs[dms]` - Type annotations for\n  [DatabaseMigrationService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dms/)\n  service.\n- `boto3-stubs[docdb]` - Type annotations for\n  [DocDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_docdb/)\n  service.\n- `boto3-stubs[docdb-elastic]` - Type annotations for\n  [DocDBElastic](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_docdb_elastic/)\n  service.\n- `boto3-stubs[drs]` - Type annotations for\n  [drs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_drs/) service.\n- `boto3-stubs[ds]` - Type annotations for\n  [DirectoryService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ds/)\n  service.\n- `boto3-stubs[dynamodb]` - Type annotations for\n  [DynamoDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodb/)\n  service.\n- `boto3-stubs[dynamodbstreams]` - Type annotations for\n  [DynamoDBStreams](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_dynamodbstreams/)\n  service.\n- `boto3-stubs[ebs]` - Type annotations for\n  [EBS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ebs/) service.\n- `boto3-stubs[ec2]` - Type annotations for\n  [EC2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ec2/) service.\n- `boto3-stubs[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[ecr]` - Type annotations for\n  [ECR](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ecr/) service.\n- `boto3-stubs[ecr-public]` - Type annotations for\n  [ECRPublic](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ecr_public/)\n  service.\n- `boto3-stubs[ecs]` - Type annotations for\n  [ECS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ecs/) service.\n- `boto3-stubs[efs]` - Type annotations for\n  [EFS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_efs/) service.\n- `boto3-stubs[eks]` - Type annotations for\n  [EKS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/) service.\n- `boto3-stubs[eks-auth]` - Type annotations for\n  [EKSAuth](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks_auth/)\n  service.\n- `boto3-stubs[elastic-inference]` - Type annotations for\n  [ElasticInference](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elastic_inference/)\n  service.\n- `boto3-stubs[elasticache]` - Type annotations for\n  [ElastiCache](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elasticache/)\n  service.\n- `boto3-stubs[elasticbeanstalk]` - Type annotations for\n  [ElasticBeanstalk](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elasticbeanstalk/)\n  service.\n- `boto3-stubs[elastictranscoder]` - Type annotations for\n  [ElasticTranscoder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elastictranscoder/)\n  service.\n- `boto3-stubs[elb]` - Type annotations for\n  [ElasticLoadBalancing](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elb/)\n  service.\n- `boto3-stubs[elbv2]` - Type annotations for\n  [ElasticLoadBalancingv2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_elbv2/)\n  service.\n- `boto3-stubs[emr]` - Type annotations for\n  [EMR](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_emr/) service.\n- `boto3-stubs[emr-containers]` - Type annotations for\n  [EMRContainers](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_emr_containers/)\n  service.\n- `boto3-stubs[emr-serverless]` - Type annotations for\n  [EMRServerless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_emr_serverless/)\n  service.\n- `boto3-stubs[entityresolution]` - Type annotations for\n  [EntityResolution](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_entityresolution/)\n  service.\n- `boto3-stubs[es]` - Type annotations for\n  [ElasticsearchService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_es/)\n  service.\n- `boto3-stubs[events]` - Type annotations for\n  [EventBridge](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_events/)\n  service.\n- `boto3-stubs[evidently]` - Type annotations for\n  [CloudWatchEvidently](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_evidently/)\n  service.\n- `boto3-stubs[finspace]` - Type annotations for\n  [finspace](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_finspace/)\n  service.\n- `boto3-stubs[finspace-data]` - Type annotations for\n  [FinSpaceData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_finspace_data/)\n  service.\n- `boto3-stubs[firehose]` - Type annotations for\n  [Firehose](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_firehose/)\n  service.\n- `boto3-stubs[fis]` - Type annotations for\n  [FIS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_fis/) service.\n- `boto3-stubs[fms]` - Type annotations for\n  [FMS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_fms/) service.\n- `boto3-stubs[forecast]` - Type annotations for\n  [ForecastService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_forecast/)\n  service.\n- `boto3-stubs[forecastquery]` - Type annotations for\n  [ForecastQueryService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_forecastquery/)\n  service.\n- `boto3-stubs[frauddetector]` - Type annotations for\n  [FraudDetector](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_frauddetector/)\n  service.\n- `boto3-stubs[freetier]` - Type annotations for\n  [FreeTier](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_freetier/)\n  service.\n- `boto3-stubs[fsx]` - Type annotations for\n  [FSx](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_fsx/) service.\n- `boto3-stubs[gamelift]` - Type annotations for\n  [GameLift](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_gamelift/)\n  service.\n- `boto3-stubs[glacier]` - Type annotations for\n  [Glacier](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_glacier/)\n  service.\n- `boto3-stubs[globalaccelerator]` - Type annotations for\n  [GlobalAccelerator](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_globalaccelerator/)\n  service.\n- `boto3-stubs[glue]` - Type annotations for\n  [Glue](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_glue/) service.\n- `boto3-stubs[grafana]` - Type annotations for\n  [ManagedGrafana](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_grafana/)\n  service.\n- `boto3-stubs[greengrass]` - Type annotations for\n  [Greengrass](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_greengrass/)\n  service.\n- `boto3-stubs[greengrassv2]` - Type annotations for\n  [GreengrassV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_greengrassv2/)\n  service.\n- `boto3-stubs[groundstation]` - Type annotations for\n  [GroundStation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_groundstation/)\n  service.\n- `boto3-stubs[guardduty]` - Type annotations for\n  [GuardDuty](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_guardduty/)\n  service.\n- `boto3-stubs[health]` - Type annotations for\n  [Health](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_health/)\n  service.\n- `boto3-stubs[healthlake]` - Type annotations for\n  [HealthLake](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_healthlake/)\n  service.\n- `boto3-stubs[honeycode]` - Type annotations for\n  [Honeycode](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_honeycode/)\n  service.\n- `boto3-stubs[iam]` - Type annotations for\n  [IAM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iam/) service.\n- `boto3-stubs[identitystore]` - Type annotations for\n  [IdentityStore](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_identitystore/)\n  service.\n- `boto3-stubs[imagebuilder]` - Type annotations for\n  [imagebuilder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_imagebuilder/)\n  service.\n- `boto3-stubs[importexport]` - Type annotations for\n  [ImportExport](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_importexport/)\n  service.\n- `boto3-stubs[inspector]` - Type annotations for\n  [Inspector](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_inspector/)\n  service.\n- `boto3-stubs[inspector-scan]` - Type annotations for\n  [inspectorscan](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_inspector_scan/)\n  service.\n- `boto3-stubs[inspector2]` - Type annotations for\n  [Inspector2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_inspector2/)\n  service.\n- `boto3-stubs[internetmonitor]` - Type annotations for\n  [CloudWatchInternetMonitor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_internetmonitor/)\n  service.\n- `boto3-stubs[iot]` - Type annotations for\n  [IoT](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot/) service.\n- `boto3-stubs[iot-data]` - Type annotations for\n  [IoTDataPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot_data/)\n  service.\n- `boto3-stubs[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[iot1click-devices]` - Type annotations for\n  [IoT1ClickDevicesService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot1click_devices/)\n  service.\n- `boto3-stubs[iot1click-projects]` - Type annotations for\n  [IoT1ClickProjects](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iot1click_projects/)\n  service.\n- `boto3-stubs[iotanalytics]` - Type annotations for\n  [IoTAnalytics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotanalytics/)\n  service.\n- `boto3-stubs[iotdeviceadvisor]` - Type annotations for\n  [IoTDeviceAdvisor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotdeviceadvisor/)\n  service.\n- `boto3-stubs[iotevents]` - Type annotations for\n  [IoTEvents](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotevents/)\n  service.\n- `boto3-stubs[iotevents-data]` - Type annotations for\n  [IoTEventsData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotevents_data/)\n  service.\n- `boto3-stubs[iotfleethub]` - Type annotations for\n  [IoTFleetHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotfleethub/)\n  service.\n- `boto3-stubs[iotfleetwise]` - Type annotations for\n  [IoTFleetWise](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotfleetwise/)\n  service.\n- `boto3-stubs[iotsecuretunneling]` - Type annotations for\n  [IoTSecureTunneling](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotsecuretunneling/)\n  service.\n- `boto3-stubs[iotsitewise]` - Type annotations for\n  [IoTSiteWise](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotsitewise/)\n  service.\n- `boto3-stubs[iotthingsgraph]` - Type annotations for\n  [IoTThingsGraph](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotthingsgraph/)\n  service.\n- `boto3-stubs[iottwinmaker]` - Type annotations for\n  [IoTTwinMaker](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iottwinmaker/)\n  service.\n- `boto3-stubs[iotwireless]` - Type annotations for\n  [IoTWireless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_iotwireless/)\n  service.\n- `boto3-stubs[ivs]` - Type annotations for\n  [IVS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ivs/) service.\n- `boto3-stubs[ivs-realtime]` - Type annotations for\n  [ivsrealtime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ivs_realtime/)\n  service.\n- `boto3-stubs[ivschat]` - Type annotations for\n  [ivschat](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ivschat/)\n  service.\n- `boto3-stubs[kafka]` - Type annotations for\n  [Kafka](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kafka/)\n  service.\n- `boto3-stubs[kafkaconnect]` - Type annotations for\n  [KafkaConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kafkaconnect/)\n  service.\n- `boto3-stubs[kendra]` - Type annotations for\n  [kendra](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kendra/)\n  service.\n- `boto3-stubs[kendra-ranking]` - Type annotations for\n  [KendraRanking](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kendra_ranking/)\n  service.\n- `boto3-stubs[keyspaces]` - Type annotations for\n  [Keyspaces](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_keyspaces/)\n  service.\n- `boto3-stubs[kinesis]` - Type annotations for\n  [Kinesis](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesis/)\n  service.\n- `boto3-stubs[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[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[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[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[kinesisanalytics]` - Type annotations for\n  [KinesisAnalytics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesisanalytics/)\n  service.\n- `boto3-stubs[kinesisanalyticsv2]` - Type annotations for\n  [KinesisAnalyticsV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesisanalyticsv2/)\n  service.\n- `boto3-stubs[kinesisvideo]` - Type annotations for\n  [KinesisVideo](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kinesisvideo/)\n  service.\n- `boto3-stubs[kms]` - Type annotations for\n  [KMS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_kms/) service.\n- `boto3-stubs[lakeformation]` - Type annotations for\n  [LakeFormation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lakeformation/)\n  service.\n- `boto3-stubs[lambda]` - Type annotations for\n  [Lambda](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda/)\n  service.\n- `boto3-stubs[launch-wizard]` - Type annotations for\n  [LaunchWizard](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_launch_wizard/)\n  service.\n- `boto3-stubs[lex-models]` - Type annotations for\n  [LexModelBuildingService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lex_models/)\n  service.\n- `boto3-stubs[lex-runtime]` - Type annotations for\n  [LexRuntimeService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lex_runtime/)\n  service.\n- `boto3-stubs[lexv2-models]` - Type annotations for\n  [LexModelsV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lexv2_models/)\n  service.\n- `boto3-stubs[lexv2-runtime]` - Type annotations for\n  [LexRuntimeV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lexv2_runtime/)\n  service.\n- `boto3-stubs[license-manager]` - Type annotations for\n  [LicenseManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_license_manager/)\n  service.\n- `boto3-stubs[license-manager-linux-subscriptions]` - Type annotations for\n  [LicenseManagerLinuxSubscriptions](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_license_manager_linux_subscriptions/)\n  service.\n- `boto3-stubs[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[lightsail]` - Type annotations for\n  [Lightsail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lightsail/)\n  service.\n- `boto3-stubs[location]` - Type annotations for\n  [LocationService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_location/)\n  service.\n- `boto3-stubs[logs]` - Type annotations for\n  [CloudWatchLogs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_logs/)\n  service.\n- `boto3-stubs[lookoutequipment]` - Type annotations for\n  [LookoutEquipment](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lookoutequipment/)\n  service.\n- `boto3-stubs[lookoutmetrics]` - Type annotations for\n  [LookoutMetrics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lookoutmetrics/)\n  service.\n- `boto3-stubs[lookoutvision]` - Type annotations for\n  [LookoutforVision](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lookoutvision/)\n  service.\n- `boto3-stubs[m2]` - Type annotations for\n  [MainframeModernization](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_m2/)\n  service.\n- `boto3-stubs[machinelearning]` - Type annotations for\n  [MachineLearning](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_machinelearning/)\n  service.\n- `boto3-stubs[macie2]` - Type annotations for\n  [Macie2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_macie2/)\n  service.\n- `boto3-stubs[managedblockchain]` - Type annotations for\n  [ManagedBlockchain](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_managedblockchain/)\n  service.\n- `boto3-stubs[managedblockchain-query]` - Type annotations for\n  [ManagedBlockchainQuery](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_managedblockchain_query/)\n  service.\n- `boto3-stubs[marketplace-agreement]` - Type annotations for\n  [AgreementService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_agreement/)\n  service.\n- `boto3-stubs[marketplace-catalog]` - Type annotations for\n  [MarketplaceCatalog](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_catalog/)\n  service.\n- `boto3-stubs[marketplace-deployment]` - Type annotations for\n  [MarketplaceDeploymentService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_deployment/)\n  service.\n- `boto3-stubs[marketplace-entitlement]` - Type annotations for\n  [MarketplaceEntitlementService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplace_entitlement/)\n  service.\n- `boto3-stubs[marketplacecommerceanalytics]` - Type annotations for\n  [MarketplaceCommerceAnalytics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_marketplacecommerceanalytics/)\n  service.\n- `boto3-stubs[mediaconnect]` - Type annotations for\n  [MediaConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediaconnect/)\n  service.\n- `boto3-stubs[mediaconvert]` - Type annotations for\n  [MediaConvert](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediaconvert/)\n  service.\n- `boto3-stubs[medialive]` - Type annotations for\n  [MediaLive](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_medialive/)\n  service.\n- `boto3-stubs[mediapackage]` - Type annotations for\n  [MediaPackage](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediapackage/)\n  service.\n- `boto3-stubs[mediapackage-vod]` - Type annotations for\n  [MediaPackageVod](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediapackage_vod/)\n  service.\n- `boto3-stubs[mediapackagev2]` - Type annotations for\n  [mediapackagev2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediapackagev2/)\n  service.\n- `boto3-stubs[mediastore]` - Type annotations for\n  [MediaStore](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediastore/)\n  service.\n- `boto3-stubs[mediastore-data]` - Type annotations for\n  [MediaStoreData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediastore_data/)\n  service.\n- `boto3-stubs[mediatailor]` - Type annotations for\n  [MediaTailor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mediatailor/)\n  service.\n- `boto3-stubs[medical-imaging]` - Type annotations for\n  [HealthImaging](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_medical_imaging/)\n  service.\n- `boto3-stubs[memorydb]` - Type annotations for\n  [MemoryDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_memorydb/)\n  service.\n- `boto3-stubs[meteringmarketplace]` - Type annotations for\n  [MarketplaceMetering](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_meteringmarketplace/)\n  service.\n- `boto3-stubs[mgh]` - Type annotations for\n  [MigrationHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mgh/)\n  service.\n- `boto3-stubs[mgn]` - Type annotations for\n  [mgn](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mgn/) service.\n- `boto3-stubs[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[migrationhub-config]` - Type annotations for\n  [MigrationHubConfig](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migrationhub_config/)\n  service.\n- `boto3-stubs[migrationhuborchestrator]` - Type annotations for\n  [MigrationHubOrchestrator](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migrationhuborchestrator/)\n  service.\n- `boto3-stubs[migrationhubstrategy]` - Type annotations for\n  [MigrationHubStrategyRecommendations](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_migrationhubstrategy/)\n  service.\n- `boto3-stubs[mobile]` - Type annotations for\n  [Mobile](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mobile/)\n  service.\n- `boto3-stubs[mq]` - Type annotations for\n  [MQ](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mq/) service.\n- `boto3-stubs[mturk]` - Type annotations for\n  [MTurk](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mturk/)\n  service.\n- `boto3-stubs[mwaa]` - Type annotations for\n  [MWAA](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_mwaa/) service.\n- `boto3-stubs[neptune]` - Type annotations for\n  [Neptune](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_neptune/)\n  service.\n- `boto3-stubs[neptune-graph]` - Type annotations for\n  [NeptuneGraph](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_neptune_graph/)\n  service.\n- `boto3-stubs[neptunedata]` - Type annotations for\n  [NeptuneData](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_neptunedata/)\n  service.\n- `boto3-stubs[network-firewall]` - Type annotations for\n  [NetworkFirewall](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_network_firewall/)\n  service.\n- `boto3-stubs[networkmanager]` - Type annotations for\n  [NetworkManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_networkmanager/)\n  service.\n- `boto3-stubs[networkmonitor]` - Type annotations for\n  [CloudWatchNetworkMonitor](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_networkmonitor/)\n  service.\n- `boto3-stubs[nimble]` - Type annotations for\n  [NimbleStudio](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_nimble/)\n  service.\n- `boto3-stubs[oam]` - Type annotations for\n  [CloudWatchObservabilityAccessManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_oam/)\n  service.\n- `boto3-stubs[omics]` - Type annotations for\n  [Omics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_omics/)\n  service.\n- `boto3-stubs[opensearch]` - Type annotations for\n  [OpenSearchService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opensearch/)\n  service.\n- `boto3-stubs[opensearchserverless]` - Type annotations for\n  [OpenSearchServiceServerless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opensearchserverless/)\n  service.\n- `boto3-stubs[opsworks]` - Type annotations for\n  [OpsWorks](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opsworks/)\n  service.\n- `boto3-stubs[opsworkscm]` - Type annotations for\n  [OpsWorksCM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_opsworkscm/)\n  service.\n- `boto3-stubs[organizations]` - Type annotations for\n  [Organizations](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/)\n  service.\n- `boto3-stubs[osis]` - Type annotations for\n  [OpenSearchIngestion](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_osis/)\n  service.\n- `boto3-stubs[outposts]` - Type annotations for\n  [Outposts](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_outposts/)\n  service.\n- `boto3-stubs[panorama]` - Type annotations for\n  [Panorama](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_panorama/)\n  service.\n- `boto3-stubs[payment-cryptography]` - Type annotations for\n  [PaymentCryptographyControlPlane](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_payment_cryptography/)\n  service.\n- `boto3-stubs[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[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[personalize]` - Type annotations for\n  [Personalize](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_personalize/)\n  service.\n- `boto3-stubs[personalize-events]` - Type annotations for\n  [PersonalizeEvents](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_personalize_events/)\n  service.\n- `boto3-stubs[personalize-runtime]` - Type annotations for\n  [PersonalizeRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_personalize_runtime/)\n  service.\n- `boto3-stubs[pi]` - Type annotations for\n  [PI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pi/) service.\n- `boto3-stubs[pinpoint]` - Type annotations for\n  [Pinpoint](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint/)\n  service.\n- `boto3-stubs[pinpoint-email]` - Type annotations for\n  [PinpointEmail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pinpoint_email/)\n  service.\n- `boto3-stubs[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[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[pipes]` - Type annotations for\n  [EventBridgePipes](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pipes/)\n  service.\n- `boto3-stubs[polly]` - Type annotations for\n  [Polly](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_polly/)\n  service.\n- `boto3-stubs[pricing]` - Type annotations for\n  [Pricing](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_pricing/)\n  service.\n- `boto3-stubs[privatenetworks]` - Type annotations for\n  [Private5G](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_privatenetworks/)\n  service.\n- `boto3-stubs[proton]` - Type annotations for\n  [Proton](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_proton/)\n  service.\n- `boto3-stubs[qbusiness]` - Type annotations for\n  [QBusiness](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qbusiness/)\n  service.\n- `boto3-stubs[qconnect]` - Type annotations for\n  [QConnect](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qconnect/)\n  service.\n- `boto3-stubs[qldb]` - Type annotations for\n  [QLDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qldb/) service.\n- `boto3-stubs[qldb-session]` - Type annotations for\n  [QLDBSession](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_qldb_session/)\n  service.\n- `boto3-stubs[quicksight]` - Type annotations for\n  [QuickSight](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_quicksight/)\n  service.\n- `boto3-stubs[ram]` - Type annotations for\n  [RAM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ram/) service.\n- `boto3-stubs[rbin]` - Type annotations for\n  [RecycleBin](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rbin/)\n  service.\n- `boto3-stubs[rds]` - Type annotations for\n  [RDS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rds/) service.\n- `boto3-stubs[rds-data]` - Type annotations for\n  [RDSDataService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rds_data/)\n  service.\n- `boto3-stubs[redshift]` - Type annotations for\n  [Redshift](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift/)\n  service.\n- `boto3-stubs[redshift-data]` - Type annotations for\n  [RedshiftDataAPIService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift_data/)\n  service.\n- `boto3-stubs[redshift-serverless]` - Type annotations for\n  [RedshiftServerless](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_redshift_serverless/)\n  service.\n- `boto3-stubs[rekognition]` - Type annotations for\n  [Rekognition](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rekognition/)\n  service.\n- `boto3-stubs[repostspace]` - Type annotations for\n  [rePostPrivate](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_repostspace/)\n  service.\n- `boto3-stubs[resiliencehub]` - Type annotations for\n  [ResilienceHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resiliencehub/)\n  service.\n- `boto3-stubs[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[resource-groups]` - Type annotations for\n  [ResourceGroups](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resource_groups/)\n  service.\n- `boto3-stubs[resourcegroupstaggingapi]` - Type annotations for\n  [ResourceGroupsTaggingAPI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_resourcegroupstaggingapi/)\n  service.\n- `boto3-stubs[robomaker]` - Type annotations for\n  [RoboMaker](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_robomaker/)\n  service.\n- `boto3-stubs[rolesanywhere]` - Type annotations for\n  [IAMRolesAnywhere](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rolesanywhere/)\n  service.\n- `boto3-stubs[route53]` - Type annotations for\n  [Route53](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53/)\n  service.\n- `boto3-stubs[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[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[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[route53domains]` - Type annotations for\n  [Route53Domains](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53domains/)\n  service.\n- `boto3-stubs[route53resolver]` - Type annotations for\n  [Route53Resolver](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_route53resolver/)\n  service.\n- `boto3-stubs[rum]` - Type annotations for\n  [CloudWatchRUM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_rum/)\n  service.\n- `boto3-stubs[s3]` - Type annotations for\n  [S3](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3/) service.\n- `boto3-stubs[s3control]` - Type annotations for\n  [S3Control](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3control/)\n  service.\n- `boto3-stubs[s3outposts]` - Type annotations for\n  [S3Outposts](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_s3outposts/)\n  service.\n- `boto3-stubs[sagemaker]` - Type annotations for\n  [SageMaker](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker/)\n  service.\n- `boto3-stubs[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[sagemaker-edge]` - Type annotations for\n  [SagemakerEdgeManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_edge/)\n  service.\n- `boto3-stubs[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[sagemaker-geospatial]` - Type annotations for\n  [SageMakergeospatialcapabilities](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_geospatial/)\n  service.\n- `boto3-stubs[sagemaker-metrics]` - Type annotations for\n  [SageMakerMetrics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_metrics/)\n  service.\n- `boto3-stubs[sagemaker-runtime]` - Type annotations for\n  [SageMakerRuntime](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sagemaker_runtime/)\n  service.\n- `boto3-stubs[savingsplans]` - Type annotations for\n  [SavingsPlans](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_savingsplans/)\n  service.\n- `boto3-stubs[scheduler]` - Type annotations for\n  [EventBridgeScheduler](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_scheduler/)\n  service.\n- `boto3-stubs[schemas]` - Type annotations for\n  [Schemas](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_schemas/)\n  service.\n- `boto3-stubs[sdb]` - Type annotations for\n  [SimpleDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sdb/)\n  service.\n- `boto3-stubs[secretsmanager]` - Type annotations for\n  [SecretsManager](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_secretsmanager/)\n  service.\n- `boto3-stubs[securityhub]` - Type annotations for\n  [SecurityHub](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_securityhub/)\n  service.\n- `boto3-stubs[securitylake]` - Type annotations for\n  [SecurityLake](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_securitylake/)\n  service.\n- `boto3-stubs[serverlessrepo]` - Type annotations for\n  [ServerlessApplicationRepository](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_serverlessrepo/)\n  service.\n- `boto3-stubs[service-quotas]` - Type annotations for\n  [ServiceQuotas](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_service_quotas/)\n  service.\n- `boto3-stubs[servicecatalog]` - Type annotations for\n  [ServiceCatalog](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_servicecatalog/)\n  service.\n- `boto3-stubs[servicecatalog-appregistry]` - Type annotations for\n  [AppRegistry](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_servicecatalog_appregistry/)\n  service.\n- `boto3-stubs[servicediscovery]` - Type annotations for\n  [ServiceDiscovery](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_servicediscovery/)\n  service.\n- `boto3-stubs[ses]` - Type annotations for\n  [SES](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ses/) service.\n- `boto3-stubs[sesv2]` - Type annotations for\n  [SESV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sesv2/)\n  service.\n- `boto3-stubs[shield]` - Type annotations for\n  [Shield](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_shield/)\n  service.\n- `boto3-stubs[signer]` - Type annotations for\n  [signer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_signer/)\n  service.\n- `boto3-stubs[simspaceweaver]` - Type annotations for\n  [SimSpaceWeaver](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_simspaceweaver/)\n  service.\n- `boto3-stubs[sms]` - Type annotations for\n  [SMS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sms/) service.\n- `boto3-stubs[sms-voice]` - Type annotations for\n  [PinpointSMSVoice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sms_voice/)\n  service.\n- `boto3-stubs[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[snowball]` - Type annotations for\n  [Snowball](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_snowball/)\n  service.\n- `boto3-stubs[sns]` - Type annotations for\n  [SNS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sns/) service.\n- `boto3-stubs[sqs]` - Type annotations for\n  [SQS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sqs/) service.\n- `boto3-stubs[ssm]` - Type annotations for\n  [SSM](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm/) service.\n- `boto3-stubs[ssm-contacts]` - Type annotations for\n  [SSMContacts](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_contacts/)\n  service.\n- `boto3-stubs[ssm-incidents]` - Type annotations for\n  [SSMIncidents](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_incidents/)\n  service.\n- `boto3-stubs[ssm-sap]` - Type annotations for\n  [SsmSap](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_ssm_sap/)\n  service.\n- `boto3-stubs[sso]` - Type annotations for\n  [SSO](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso/) service.\n- `boto3-stubs[sso-admin]` - Type annotations for\n  [SSOAdmin](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_admin/)\n  service.\n- `boto3-stubs[sso-oidc]` - Type annotations for\n  [SSOOIDC](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sso_oidc/)\n  service.\n- `boto3-stubs[stepfunctions]` - Type annotations for\n  [SFN](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_stepfunctions/)\n  service.\n- `boto3-stubs[storagegateway]` - Type annotations for\n  [StorageGateway](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_storagegateway/)\n  service.\n- `boto3-stubs[sts]` - Type annotations for\n  [STS](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_sts/) service.\n- `boto3-stubs[supplychain]` - Type annotations for\n  [SupplyChain](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_supplychain/)\n  service.\n- `boto3-stubs[support]` - Type annotations for\n  [Support](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_support/)\n  service.\n- `boto3-stubs[support-app]` - Type annotations for\n  [SupportApp](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_support_app/)\n  service.\n- `boto3-stubs[swf]` - Type annotations for\n  [SWF](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_swf/) service.\n- `boto3-stubs[synthetics]` - Type annotations for\n  [Synthetics](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_synthetics/)\n  service.\n- `boto3-stubs[textract]` - Type annotations for\n  [Textract](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_textract/)\n  service.\n- `boto3-stubs[timestream-influxdb]` - Type annotations for\n  [TimestreamInfluxDB](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_influxdb/)\n  service.\n- `boto3-stubs[timestream-query]` - Type annotations for\n  [TimestreamQuery](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_query/)\n  service.\n- `boto3-stubs[timestream-write]` - Type annotations for\n  [TimestreamWrite](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_timestream_write/)\n  service.\n- `boto3-stubs[tnb]` - Type annotations for\n  [TelcoNetworkBuilder](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_tnb/)\n  service.\n- `boto3-stubs[transcribe]` - Type annotations for\n  [TranscribeService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transcribe/)\n  service.\n- `boto3-stubs[transfer]` - Type annotations for\n  [Transfer](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/)\n  service.\n- `boto3-stubs[translate]` - Type annotations for\n  [Translate](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_translate/)\n  service.\n- `boto3-stubs[trustedadvisor]` - Type annotations for\n  [TrustedAdvisorPublicAPI](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_trustedadvisor/)\n  service.\n- `boto3-stubs[verifiedpermissions]` - Type annotations for\n  [VerifiedPermissions](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_verifiedpermissions/)\n  service.\n- `boto3-stubs[voice-id]` - Type annotations for\n  [VoiceID](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_voice_id/)\n  service.\n- `boto3-stubs[vpc-lattice]` - Type annotations for\n  [VPCLattice](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_vpc_lattice/)\n  service.\n- `boto3-stubs[waf]` - Type annotations for\n  [WAF](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf/) service.\n- `boto3-stubs[waf-regional]` - Type annotations for\n  [WAFRegional](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_waf_regional/)\n  service.\n- `boto3-stubs[wafv2]` - Type annotations for\n  [WAFV2](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_wafv2/)\n  service.\n- `boto3-stubs[wellarchitected]` - Type annotations for\n  [WellArchitected](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_wellarchitected/)\n  service.\n- `boto3-stubs[wisdom]` - Type annotations for\n  [ConnectWisdomService](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_wisdom/)\n  service.\n- `boto3-stubs[workdocs]` - Type annotations for\n  [WorkDocs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workdocs/)\n  service.\n- `boto3-stubs[worklink]` - Type annotations for\n  [WorkLink](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_worklink/)\n  service.\n- `boto3-stubs[workmail]` - Type annotations for\n  [WorkMail](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workmail/)\n  service.\n- `boto3-stubs[workmailmessageflow]` - Type annotations for\n  [WorkMailMessageFlow](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workmailmessageflow/)\n  service.\n- `boto3-stubs[workspaces]` - Type annotations for\n  [WorkSpaces](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces/)\n  service.\n- `boto3-stubs[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[workspaces-web]` - Type annotations for\n  [WorkSpacesWeb](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_workspaces_web/)\n  service.\n- `boto3-stubs[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.34.72 generated with mypy-boto3-builder 7.23.2",
    "version": "1.34.72",
    "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": "75ec35e69d6602502c92f735d15f51f93025a7992a89317f7b4884c0ad09ca96",
                "md5": "8d492fcb5b94fca9a8710d5e16bed758",
                "sha256": "df41c849ad6b42096e1293528bf72e05773d1fdeedddc9e5410417eb9ac3f02f"
            },
            "downloads": -1,
            "filename": "boto3_stubs-1.34.72-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8d492fcb5b94fca9a8710d5e16bed758",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 56051,
            "upload_time": "2024-03-27T19:47:51",
            "upload_time_iso_8601": "2024-03-27T19:47:51.887361Z",
            "url": "https://files.pythonhosted.org/packages/75/ec/35e69d6602502c92f735d15f51f93025a7992a89317f7b4884c0ad09ca96/boto3_stubs-1.34.72-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a15c51d7b9444aaaa20569d3fc1053f2e790ae05d50f1342951e5b5038301a0e",
                "md5": "df668c4dfe4ef745f880725185cbc3f1",
                "sha256": "7903dc8a203beb74d6237b266ae064ff5a9b276074af7500b7db48544649596a"
            },
            "downloads": -1,
            "filename": "boto3-stubs-1.34.72.tar.gz",
            "has_sig": false,
            "md5_digest": "df668c4dfe4ef745f880725185cbc3f1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 87598,
            "upload_time": "2024-03-27T19:48:06",
            "upload_time_iso_8601": "2024-03-27T19:48:06.160553Z",
            "url": "https://files.pythonhosted.org/packages/a1/5c/51d7b9444aaaa20569d3fc1053f2e790ae05d50f1342951e5b5038301a0e/boto3-stubs-1.34.72.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-27 19:48:06",
    "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"
}
        
Elapsed time: 0.24545s