<a id="types-aioboto3"></a>
# types-aioboto3
[![PyPI - types-aioboto3](https://img.shields.io/pypi/v/types-aioboto3.svg?color=blue)](https://pypi.org/project/types-aioboto3)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/types-aioboto3.svg?color=blue)](https://pypi.org/project/types-aioboto3)
[![Docs](https://img.shields.io/readthedocs/types-aioboto3.svg?color=blue)](https://youtype.github.io/types_aioboto3_docs/)
[![PyPI - Downloads](https://static.pepy.tech/badge/types-aioboto3)](https://pepy.tech/project/types-aioboto3)
![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
Type annotations for [aioboto3 13.2.0](https://pypi.org/project/aioboto3/)
compatible with [VSCode](https://code.visualstudio.com/),
[PyCharm](https://www.jetbrains.com/pycharm/),
[Emacs](https://www.gnu.org/software/emacs/),
[Sublime Text](https://www.sublimetext.com/),
[mypy](https://github.com/python/mypy),
[pyright](https://github.com/microsoft/pyright) and other tools.
Generated by
[mypy-boto3-builder 8.2.0](https://github.com/youtype/mypy_boto3_builder).
More information can be found in
[types-aioboto3 docs](https://youtype.github.io/types_aioboto3_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)
- [types-aioboto3](#types-aioboto3)
- [How to install](#how-to-install)
- [From PyPI with pip](#from-pypi-with-pip)
- [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)
- [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="from-pypi-with-pip"></a>
### From PyPI with pip
Install `types-aioboto3` to add type annotations for `aioboto3` package.
```bash
# install type annotations only for aioboto3
python -m pip install types-aioboto3
# install aioboto3 type annotations
# for ec2, s3, rds, lambda, sqs, dynamo and cloudformation
python -m pip install 'types-aioboto3[essential]'
# or install annotations for services you use
python -m pip install 'types-aioboto3[acm,apigateway]'
# or install annotations in sync with aioboto3 version
python -m pip install 'types-aioboto3[aioboto3]'
# or install all-in-one annotations for all services at once
python -m pip install 'types-aioboto3[full]'
# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'types-aioboto3-lite[essential]'
```
<a id="how-to-uninstall"></a>
## How to uninstall
```bash
# uninstall types-aioboto3
python -m pip uninstall -y types-aioboto3
```
<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 `types-aioboto3[essential]` in your environment:
```bash
python -m pip install 'types-aioboto3[essential]'
```
Both type checking and code completion should now work. No explicit type
annotations required, write your `aioboto3` code as usual.
<a id="pycharm"></a>
### PyCharm
Install `types-aioboto3-lite[essential]` in your environment:
```bash
python -m pip install 'types-aioboto3-lite[essential]'
```
Both type checking and code completion should now work. Explicit type
annotations **are required**.
Use `types-aioboto3` package instead for implicit type discovery.
<a id="emacs"></a>
### Emacs
- Install `types-aioboto3` with services you use in your environment:
```bash
python -m pip install 'types-aioboto3[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
`types-aioboto3`
Type checking should now work. No explicit type annotations required, write
your `aioboto3` code as usual.
<a id="sublime-text"></a>
### Sublime Text
- Install `types-aioboto3[essential]` with services you use in your
environment:
```bash
python -m pip install 'types-aioboto3[essential]'
```
- Install [LSP-pyright](https://github.com/sublimelsp/LSP-pyright) package
Type checking should now work. No explicit type annotations required, write
your `aioboto3` 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 `types-aioboto3[essential]` in your environment:
```bash
python -m pip install 'types-aioboto3[essential]'
```
Type checking should now work. No explicit type annotations required, write
your `aioboto3` code as usual.
<a id="pyright"></a>
### pyright
- Install `pyright`: `npm i -g pyright`
- Install `types-aioboto3[essential]` in your environment:
```bash
python -m pip install 'types-aioboto3[essential]'
```
Optionally, you can install `types-aioboto3` to `typings` directory.
Type checking should now work. No explicit type annotations required, write
your `aioboto3` code as usual.
<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 `aioboto3`
updates. It delivers drop-in type annotations for you and makes sure that:
- All available `aioboto3` services are covered.
- Each public class and method of every `aioboto3` service gets valid type
annotations extracted from `botocore` schemas.
- Type annotations include up-to-date documentation.
- Link to documentation is provided for every method.
- Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.
<a id="what's-new"></a>
## What's new
<a id="implemented-features"></a>
### Implemented features
- Fully type annotated `boto3`, `botocore`, `aiobotocore` and `aioboto3`
libraries
- `mypy`, `pyright`, `VSCode`, `PyCharm`, `Sublime Text` and `Emacs`
compatibility
- `Client`, `ServiceResource`, `Resource`, `Waiter` `Paginator` type
annotations for each service
- Generated `TypeDefs` for each service
- Generated `Literals` for each service
- Auto discovery of types for `boto3.client` and `boto3.resource` calls
- Auto discovery of types for `session.client` and `session.resource` calls
- Auto discovery of types for `client.get_waiter` and `client.get_paginator`
calls
- Auto discovery of types for `ServiceResource` and `Resource` collections
- Auto discovery of types for `aiobotocore.Session.create_client` calls
<a id="latest-changes"></a>
### Latest changes
Builder changelog can be found in
[Releases](https://github.com/youtype/mypy_boto3_builder/releases).
<a id="versioning"></a>
## Versioning
`types-aioboto3` version is the same as related `aioboto3` 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
[aioboto3 docs](https://youtype.github.io/types_aioboto3_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
- `types-aioboto3[full]` - Type annotations for all 390 services in one package
(recommended).
- `types-aioboto3[all]` - Type annotations for all 390 services in separate
packages.
- `types-aioboto3[essential]` - Type annotations for
[CloudFormation](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudformation/),
[DynamoDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dynamodb/),
[EC2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ec2/),
[Lambda](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lambda/),
[RDS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rds/),
[S3](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_s3/) and
[SQS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sqs/)
services.
- `types-aioboto3[aioboto3]` - Install annotations in sync with `aioboto3`
version.
- `types-aioboto3[accessanalyzer]` - Type annotations for
[AccessAnalyzer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_accessanalyzer/)
service.
- `types-aioboto3[account]` - Type annotations for
[Account](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_account/)
service.
- `types-aioboto3[acm]` - Type annotations for
[ACM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_acm/)
service.
- `types-aioboto3[acm-pca]` - Type annotations for
[ACMPCA](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_acm_pca/)
service.
- `types-aioboto3[amp]` - Type annotations for
[PrometheusService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_amp/)
service.
- `types-aioboto3[amplify]` - Type annotations for
[Amplify](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_amplify/)
service.
- `types-aioboto3[amplifybackend]` - Type annotations for
[AmplifyBackend](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_amplifybackend/)
service.
- `types-aioboto3[amplifyuibuilder]` - Type annotations for
[AmplifyUIBuilder](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_amplifyuibuilder/)
service.
- `types-aioboto3[apigateway]` - Type annotations for
[APIGateway](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_apigateway/)
service.
- `types-aioboto3[apigatewaymanagementapi]` - Type annotations for
[ApiGatewayManagementApi](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_apigatewaymanagementapi/)
service.
- `types-aioboto3[apigatewayv2]` - Type annotations for
[ApiGatewayV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_apigatewayv2/)
service.
- `types-aioboto3[appconfig]` - Type annotations for
[AppConfig](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appconfig/)
service.
- `types-aioboto3[appconfigdata]` - Type annotations for
[AppConfigData](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appconfigdata/)
service.
- `types-aioboto3[appfabric]` - Type annotations for
[AppFabric](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appfabric/)
service.
- `types-aioboto3[appflow]` - Type annotations for
[Appflow](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appflow/)
service.
- `types-aioboto3[appintegrations]` - Type annotations for
[AppIntegrationsService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appintegrations/)
service.
- `types-aioboto3[application-autoscaling]` - Type annotations for
[ApplicationAutoScaling](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_application_autoscaling/)
service.
- `types-aioboto3[application-insights]` - Type annotations for
[ApplicationInsights](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_application_insights/)
service.
- `types-aioboto3[application-signals]` - Type annotations for
[CloudWatchApplicationSignals](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_application_signals/)
service.
- `types-aioboto3[applicationcostprofiler]` - Type annotations for
[ApplicationCostProfiler](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_applicationcostprofiler/)
service.
- `types-aioboto3[appmesh]` - Type annotations for
[AppMesh](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appmesh/)
service.
- `types-aioboto3[apprunner]` - Type annotations for
[AppRunner](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_apprunner/)
service.
- `types-aioboto3[appstream]` - Type annotations for
[AppStream](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appstream/)
service.
- `types-aioboto3[appsync]` - Type annotations for
[AppSync](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appsync/)
service.
- `types-aioboto3[apptest]` - Type annotations for
[MainframeModernizationApplicationTesting](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_apptest/)
service.
- `types-aioboto3[arc-zonal-shift]` - Type annotations for
[ARCZonalShift](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_arc_zonal_shift/)
service.
- `types-aioboto3[artifact]` - Type annotations for
[Artifact](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_artifact/)
service.
- `types-aioboto3[athena]` - Type annotations for
[Athena](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_athena/)
service.
- `types-aioboto3[auditmanager]` - Type annotations for
[AuditManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_auditmanager/)
service.
- `types-aioboto3[autoscaling]` - Type annotations for
[AutoScaling](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_autoscaling/)
service.
- `types-aioboto3[autoscaling-plans]` - Type annotations for
[AutoScalingPlans](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_autoscaling_plans/)
service.
- `types-aioboto3[b2bi]` - Type annotations for
[B2BI](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_b2bi/)
service.
- `types-aioboto3[backup]` - Type annotations for
[Backup](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_backup/)
service.
- `types-aioboto3[backup-gateway]` - Type annotations for
[BackupGateway](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_backup_gateway/)
service.
- `types-aioboto3[batch]` - Type annotations for
[Batch](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_batch/)
service.
- `types-aioboto3[bcm-data-exports]` - Type annotations for
[BillingandCostManagementDataExports](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_bcm_data_exports/)
service.
- `types-aioboto3[bedrock]` - Type annotations for
[Bedrock](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_bedrock/)
service.
- `types-aioboto3[bedrock-agent]` - Type annotations for
[AgentsforBedrock](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_bedrock_agent/)
service.
- `types-aioboto3[bedrock-agent-runtime]` - Type annotations for
[AgentsforBedrockRuntime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_bedrock_agent_runtime/)
service.
- `types-aioboto3[bedrock-runtime]` - Type annotations for
[BedrockRuntime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_bedrock_runtime/)
service.
- `types-aioboto3[billingconductor]` - Type annotations for
[BillingConductor](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_billingconductor/)
service.
- `types-aioboto3[braket]` - Type annotations for
[Braket](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_braket/)
service.
- `types-aioboto3[budgets]` - Type annotations for
[Budgets](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_budgets/)
service.
- `types-aioboto3[ce]` - Type annotations for
[CostExplorer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ce/)
service.
- `types-aioboto3[chatbot]` - Type annotations for
[Chatbot](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chatbot/)
service.
- `types-aioboto3[chime]` - Type annotations for
[Chime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chime/)
service.
- `types-aioboto3[chime-sdk-identity]` - Type annotations for
[ChimeSDKIdentity](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chime_sdk_identity/)
service.
- `types-aioboto3[chime-sdk-media-pipelines]` - Type annotations for
[ChimeSDKMediaPipelines](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chime_sdk_media_pipelines/)
service.
- `types-aioboto3[chime-sdk-meetings]` - Type annotations for
[ChimeSDKMeetings](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chime_sdk_meetings/)
service.
- `types-aioboto3[chime-sdk-messaging]` - Type annotations for
[ChimeSDKMessaging](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chime_sdk_messaging/)
service.
- `types-aioboto3[chime-sdk-voice]` - Type annotations for
[ChimeSDKVoice](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chime_sdk_voice/)
service.
- `types-aioboto3[cleanrooms]` - Type annotations for
[CleanRoomsService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cleanrooms/)
service.
- `types-aioboto3[cleanroomsml]` - Type annotations for
[CleanRoomsML](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cleanroomsml/)
service.
- `types-aioboto3[cloud9]` - Type annotations for
[Cloud9](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloud9/)
service.
- `types-aioboto3[cloudcontrol]` - Type annotations for
[CloudControlApi](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudcontrol/)
service.
- `types-aioboto3[clouddirectory]` - Type annotations for
[CloudDirectory](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_clouddirectory/)
service.
- `types-aioboto3[cloudformation]` - Type annotations for
[CloudFormation](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudformation/)
service.
- `types-aioboto3[cloudfront]` - Type annotations for
[CloudFront](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudfront/)
service.
- `types-aioboto3[cloudfront-keyvaluestore]` - Type annotations for
[CloudFrontKeyValueStore](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudfront_keyvaluestore/)
service.
- `types-aioboto3[cloudhsm]` - Type annotations for
[CloudHSM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudhsm/)
service.
- `types-aioboto3[cloudhsmv2]` - Type annotations for
[CloudHSMV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudhsmv2/)
service.
- `types-aioboto3[cloudsearch]` - Type annotations for
[CloudSearch](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudsearch/)
service.
- `types-aioboto3[cloudsearchdomain]` - Type annotations for
[CloudSearchDomain](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudsearchdomain/)
service.
- `types-aioboto3[cloudtrail]` - Type annotations for
[CloudTrail](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudtrail/)
service.
- `types-aioboto3[cloudtrail-data]` - Type annotations for
[CloudTrailDataService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudtrail_data/)
service.
- `types-aioboto3[cloudwatch]` - Type annotations for
[CloudWatch](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudwatch/)
service.
- `types-aioboto3[codeartifact]` - Type annotations for
[CodeArtifact](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codeartifact/)
service.
- `types-aioboto3[codebuild]` - Type annotations for
[CodeBuild](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codebuild/)
service.
- `types-aioboto3[codecatalyst]` - Type annotations for
[CodeCatalyst](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codecatalyst/)
service.
- `types-aioboto3[codecommit]` - Type annotations for
[CodeCommit](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codecommit/)
service.
- `types-aioboto3[codeconnections]` - Type annotations for
[CodeConnections](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codeconnections/)
service.
- `types-aioboto3[codedeploy]` - Type annotations for
[CodeDeploy](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codedeploy/)
service.
- `types-aioboto3[codeguru-reviewer]` - Type annotations for
[CodeGuruReviewer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codeguru_reviewer/)
service.
- `types-aioboto3[codeguru-security]` - Type annotations for
[CodeGuruSecurity](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codeguru_security/)
service.
- `types-aioboto3[codeguruprofiler]` - Type annotations for
[CodeGuruProfiler](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codeguruprofiler/)
service.
- `types-aioboto3[codepipeline]` - Type annotations for
[CodePipeline](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codepipeline/)
service.
- `types-aioboto3[codestar-connections]` - Type annotations for
[CodeStarconnections](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codestar_connections/)
service.
- `types-aioboto3[codestar-notifications]` - Type annotations for
[CodeStarNotifications](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codestar_notifications/)
service.
- `types-aioboto3[cognito-identity]` - Type annotations for
[CognitoIdentity](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cognito_identity/)
service.
- `types-aioboto3[cognito-idp]` - Type annotations for
[CognitoIdentityProvider](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cognito_idp/)
service.
- `types-aioboto3[cognito-sync]` - Type annotations for
[CognitoSync](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cognito_sync/)
service.
- `types-aioboto3[comprehend]` - Type annotations for
[Comprehend](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_comprehend/)
service.
- `types-aioboto3[comprehendmedical]` - Type annotations for
[ComprehendMedical](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_comprehendmedical/)
service.
- `types-aioboto3[compute-optimizer]` - Type annotations for
[ComputeOptimizer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_compute_optimizer/)
service.
- `types-aioboto3[config]` - Type annotations for
[ConfigService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_config/)
service.
- `types-aioboto3[connect]` - Type annotations for
[Connect](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_connect/)
service.
- `types-aioboto3[connect-contact-lens]` - Type annotations for
[ConnectContactLens](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_connect_contact_lens/)
service.
- `types-aioboto3[connectcampaigns]` - Type annotations for
[ConnectCampaignService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_connectcampaigns/)
service.
- `types-aioboto3[connectcases]` - Type annotations for
[ConnectCases](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_connectcases/)
service.
- `types-aioboto3[connectparticipant]` - Type annotations for
[ConnectParticipant](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_connectparticipant/)
service.
- `types-aioboto3[controlcatalog]` - Type annotations for
[ControlCatalog](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_controlcatalog/)
service.
- `types-aioboto3[controltower]` - Type annotations for
[ControlTower](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_controltower/)
service.
- `types-aioboto3[cost-optimization-hub]` - Type annotations for
[CostOptimizationHub](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cost_optimization_hub/)
service.
- `types-aioboto3[cur]` - Type annotations for
[CostandUsageReportService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cur/)
service.
- `types-aioboto3[customer-profiles]` - Type annotations for
[CustomerProfiles](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_customer_profiles/)
service.
- `types-aioboto3[databrew]` - Type annotations for
[GlueDataBrew](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_databrew/)
service.
- `types-aioboto3[dataexchange]` - Type annotations for
[DataExchange](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dataexchange/)
service.
- `types-aioboto3[datapipeline]` - Type annotations for
[DataPipeline](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_datapipeline/)
service.
- `types-aioboto3[datasync]` - Type annotations for
[DataSync](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_datasync/)
service.
- `types-aioboto3[datazone]` - Type annotations for
[DataZone](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_datazone/)
service.
- `types-aioboto3[dax]` - Type annotations for
[DAX](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dax/)
service.
- `types-aioboto3[deadline]` - Type annotations for
[DeadlineCloud](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_deadline/)
service.
- `types-aioboto3[detective]` - Type annotations for
[Detective](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_detective/)
service.
- `types-aioboto3[devicefarm]` - Type annotations for
[DeviceFarm](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_devicefarm/)
service.
- `types-aioboto3[devops-guru]` - Type annotations for
[DevOpsGuru](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_devops_guru/)
service.
- `types-aioboto3[directconnect]` - Type annotations for
[DirectConnect](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_directconnect/)
service.
- `types-aioboto3[discovery]` - Type annotations for
[ApplicationDiscoveryService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_discovery/)
service.
- `types-aioboto3[dlm]` - Type annotations for
[DLM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dlm/)
service.
- `types-aioboto3[dms]` - Type annotations for
[DatabaseMigrationService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dms/)
service.
- `types-aioboto3[docdb]` - Type annotations for
[DocDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_docdb/)
service.
- `types-aioboto3[docdb-elastic]` - Type annotations for
[DocDBElastic](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_docdb_elastic/)
service.
- `types-aioboto3[drs]` - Type annotations for
[Drs](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_drs/)
service.
- `types-aioboto3[ds]` - Type annotations for
[DirectoryService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ds/)
service.
- `types-aioboto3[ds-data]` - Type annotations for
[DirectoryServiceData](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ds_data/)
service.
- `types-aioboto3[dynamodb]` - Type annotations for
[DynamoDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dynamodb/)
service.
- `types-aioboto3[dynamodbstreams]` - Type annotations for
[DynamoDBStreams](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dynamodbstreams/)
service.
- `types-aioboto3[ebs]` - Type annotations for
[EBS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ebs/)
service.
- `types-aioboto3[ec2]` - Type annotations for
[EC2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ec2/)
service.
- `types-aioboto3[ec2-instance-connect]` - Type annotations for
[EC2InstanceConnect](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ec2_instance_connect/)
service.
- `types-aioboto3[ecr]` - Type annotations for
[ECR](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ecr/)
service.
- `types-aioboto3[ecr-public]` - Type annotations for
[ECRPublic](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ecr_public/)
service.
- `types-aioboto3[ecs]` - Type annotations for
[ECS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ecs/)
service.
- `types-aioboto3[efs]` - Type annotations for
[EFS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_efs/)
service.
- `types-aioboto3[eks]` - Type annotations for
[EKS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_eks/)
service.
- `types-aioboto3[eks-auth]` - Type annotations for
[EKSAuth](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_eks_auth/)
service.
- `types-aioboto3[elastic-inference]` - Type annotations for
[ElasticInference](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_elastic_inference/)
service.
- `types-aioboto3[elasticache]` - Type annotations for
[ElastiCache](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_elasticache/)
service.
- `types-aioboto3[elasticbeanstalk]` - Type annotations for
[ElasticBeanstalk](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_elasticbeanstalk/)
service.
- `types-aioboto3[elastictranscoder]` - Type annotations for
[ElasticTranscoder](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_elastictranscoder/)
service.
- `types-aioboto3[elb]` - Type annotations for
[ElasticLoadBalancing](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_elb/)
service.
- `types-aioboto3[elbv2]` - Type annotations for
[ElasticLoadBalancingv2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_elbv2/)
service.
- `types-aioboto3[emr]` - Type annotations for
[EMR](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_emr/)
service.
- `types-aioboto3[emr-containers]` - Type annotations for
[EMRContainers](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_emr_containers/)
service.
- `types-aioboto3[emr-serverless]` - Type annotations for
[EMRServerless](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_emr_serverless/)
service.
- `types-aioboto3[entityresolution]` - Type annotations for
[EntityResolution](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_entityresolution/)
service.
- `types-aioboto3[es]` - Type annotations for
[ElasticsearchService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_es/)
service.
- `types-aioboto3[events]` - Type annotations for
[EventBridge](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_events/)
service.
- `types-aioboto3[evidently]` - Type annotations for
[CloudWatchEvidently](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_evidently/)
service.
- `types-aioboto3[finspace]` - Type annotations for
[Finspace](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_finspace/)
service.
- `types-aioboto3[finspace-data]` - Type annotations for
[FinSpaceData](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_finspace_data/)
service.
- `types-aioboto3[firehose]` - Type annotations for
[Firehose](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_firehose/)
service.
- `types-aioboto3[fis]` - Type annotations for
[FIS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_fis/)
service.
- `types-aioboto3[fms]` - Type annotations for
[FMS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_fms/)
service.
- `types-aioboto3[forecast]` - Type annotations for
[ForecastService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_forecast/)
service.
- `types-aioboto3[forecastquery]` - Type annotations for
[ForecastQueryService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_forecastquery/)
service.
- `types-aioboto3[frauddetector]` - Type annotations for
[FraudDetector](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_frauddetector/)
service.
- `types-aioboto3[freetier]` - Type annotations for
[FreeTier](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_freetier/)
service.
- `types-aioboto3[fsx]` - Type annotations for
[FSx](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_fsx/)
service.
- `types-aioboto3[gamelift]` - Type annotations for
[GameLift](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_gamelift/)
service.
- `types-aioboto3[geo-maps]` - Type annotations for
[LocationServiceMapsV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_geo_maps/)
service.
- `types-aioboto3[geo-places]` - Type annotations for
[LocationServicePlacesV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_geo_places/)
service.
- `types-aioboto3[geo-routes]` - Type annotations for
[LocationServiceRoutesV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_geo_routes/)
service.
- `types-aioboto3[glacier]` - Type annotations for
[Glacier](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_glacier/)
service.
- `types-aioboto3[globalaccelerator]` - Type annotations for
[GlobalAccelerator](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_globalaccelerator/)
service.
- `types-aioboto3[glue]` - Type annotations for
[Glue](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_glue/)
service.
- `types-aioboto3[grafana]` - Type annotations for
[ManagedGrafana](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_grafana/)
service.
- `types-aioboto3[greengrass]` - Type annotations for
[Greengrass](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_greengrass/)
service.
- `types-aioboto3[greengrassv2]` - Type annotations for
[GreengrassV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_greengrassv2/)
service.
- `types-aioboto3[groundstation]` - Type annotations for
[GroundStation](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_groundstation/)
service.
- `types-aioboto3[guardduty]` - Type annotations for
[GuardDuty](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_guardduty/)
service.
- `types-aioboto3[health]` - Type annotations for
[Health](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_health/)
service.
- `types-aioboto3[healthlake]` - Type annotations for
[HealthLake](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_healthlake/)
service.
- `types-aioboto3[iam]` - Type annotations for
[IAM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iam/)
service.
- `types-aioboto3[identitystore]` - Type annotations for
[IdentityStore](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_identitystore/)
service.
- `types-aioboto3[imagebuilder]` - Type annotations for
[Imagebuilder](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_imagebuilder/)
service.
- `types-aioboto3[importexport]` - Type annotations for
[ImportExport](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_importexport/)
service.
- `types-aioboto3[inspector]` - Type annotations for
[Inspector](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_inspector/)
service.
- `types-aioboto3[inspector-scan]` - Type annotations for
[Inspectorscan](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_inspector_scan/)
service.
- `types-aioboto3[inspector2]` - Type annotations for
[Inspector2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_inspector2/)
service.
- `types-aioboto3[internetmonitor]` - Type annotations for
[CloudWatchInternetMonitor](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_internetmonitor/)
service.
- `types-aioboto3[iot]` - Type annotations for
[IoT](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iot/)
service.
- `types-aioboto3[iot-data]` - Type annotations for
[IoTDataPlane](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iot_data/)
service.
- `types-aioboto3[iot-jobs-data]` - Type annotations for
[IoTJobsDataPlane](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iot_jobs_data/)
service.
- `types-aioboto3[iot1click-devices]` - Type annotations for
[IoT1ClickDevicesService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iot1click_devices/)
service.
- `types-aioboto3[iot1click-projects]` - Type annotations for
[IoT1ClickProjects](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iot1click_projects/)
service.
- `types-aioboto3[iotanalytics]` - Type annotations for
[IoTAnalytics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotanalytics/)
service.
- `types-aioboto3[iotdeviceadvisor]` - Type annotations for
[IoTDeviceAdvisor](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotdeviceadvisor/)
service.
- `types-aioboto3[iotevents]` - Type annotations for
[IoTEvents](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotevents/)
service.
- `types-aioboto3[iotevents-data]` - Type annotations for
[IoTEventsData](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotevents_data/)
service.
- `types-aioboto3[iotfleethub]` - Type annotations for
[IoTFleetHub](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotfleethub/)
service.
- `types-aioboto3[iotfleetwise]` - Type annotations for
[IoTFleetWise](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotfleetwise/)
service.
- `types-aioboto3[iotsecuretunneling]` - Type annotations for
[IoTSecureTunneling](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotsecuretunneling/)
service.
- `types-aioboto3[iotsitewise]` - Type annotations for
[IoTSiteWise](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotsitewise/)
service.
- `types-aioboto3[iotthingsgraph]` - Type annotations for
[IoTThingsGraph](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotthingsgraph/)
service.
- `types-aioboto3[iottwinmaker]` - Type annotations for
[IoTTwinMaker](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iottwinmaker/)
service.
- `types-aioboto3[iotwireless]` - Type annotations for
[IoTWireless](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotwireless/)
service.
- `types-aioboto3[ivs]` - Type annotations for
[IVS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ivs/)
service.
- `types-aioboto3[ivs-realtime]` - Type annotations for
[Ivsrealtime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ivs_realtime/)
service.
- `types-aioboto3[ivschat]` - Type annotations for
[Ivschat](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ivschat/)
service.
- `types-aioboto3[kafka]` - Type annotations for
[Kafka](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kafka/)
service.
- `types-aioboto3[kafkaconnect]` - Type annotations for
[KafkaConnect](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kafkaconnect/)
service.
- `types-aioboto3[kendra]` - Type annotations for
[Kendra](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kendra/)
service.
- `types-aioboto3[kendra-ranking]` - Type annotations for
[KendraRanking](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kendra_ranking/)
service.
- `types-aioboto3[keyspaces]` - Type annotations for
[Keyspaces](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_keyspaces/)
service.
- `types-aioboto3[kinesis]` - Type annotations for
[Kinesis](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesis/)
service.
- `types-aioboto3[kinesis-video-archived-media]` - Type annotations for
[KinesisVideoArchivedMedia](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesis_video_archived_media/)
service.
- `types-aioboto3[kinesis-video-media]` - Type annotations for
[KinesisVideoMedia](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesis_video_media/)
service.
- `types-aioboto3[kinesis-video-signaling]` - Type annotations for
[KinesisVideoSignalingChannels](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesis_video_signaling/)
service.
- `types-aioboto3[kinesis-video-webrtc-storage]` - Type annotations for
[KinesisVideoWebRTCStorage](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesis_video_webrtc_storage/)
service.
- `types-aioboto3[kinesisanalytics]` - Type annotations for
[KinesisAnalytics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesisanalytics/)
service.
- `types-aioboto3[kinesisanalyticsv2]` - Type annotations for
[KinesisAnalyticsV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesisanalyticsv2/)
service.
- `types-aioboto3[kinesisvideo]` - Type annotations for
[KinesisVideo](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesisvideo/)
service.
- `types-aioboto3[kms]` - Type annotations for
[KMS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kms/)
service.
- `types-aioboto3[lakeformation]` - Type annotations for
[LakeFormation](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lakeformation/)
service.
- `types-aioboto3[lambda]` - Type annotations for
[Lambda](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lambda/)
service.
- `types-aioboto3[launch-wizard]` - Type annotations for
[LaunchWizard](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_launch_wizard/)
service.
- `types-aioboto3[lex-models]` - Type annotations for
[LexModelBuildingService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lex_models/)
service.
- `types-aioboto3[lex-runtime]` - Type annotations for
[LexRuntimeService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lex_runtime/)
service.
- `types-aioboto3[lexv2-models]` - Type annotations for
[LexModelsV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lexv2_models/)
service.
- `types-aioboto3[lexv2-runtime]` - Type annotations for
[LexRuntimeV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lexv2_runtime/)
service.
- `types-aioboto3[license-manager]` - Type annotations for
[LicenseManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_license_manager/)
service.
- `types-aioboto3[license-manager-linux-subscriptions]` - Type annotations for
[LicenseManagerLinuxSubscriptions](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_license_manager_linux_subscriptions/)
service.
- `types-aioboto3[license-manager-user-subscriptions]` - Type annotations for
[LicenseManagerUserSubscriptions](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_license_manager_user_subscriptions/)
service.
- `types-aioboto3[lightsail]` - Type annotations for
[Lightsail](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lightsail/)
service.
- `types-aioboto3[location]` - Type annotations for
[LocationService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_location/)
service.
- `types-aioboto3[logs]` - Type annotations for
[CloudWatchLogs](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_logs/)
service.
- `types-aioboto3[lookoutequipment]` - Type annotations for
[LookoutEquipment](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lookoutequipment/)
service.
- `types-aioboto3[lookoutmetrics]` - Type annotations for
[LookoutMetrics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lookoutmetrics/)
service.
- `types-aioboto3[lookoutvision]` - Type annotations for
[LookoutforVision](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lookoutvision/)
service.
- `types-aioboto3[m2]` - Type annotations for
[MainframeModernization](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_m2/)
service.
- `types-aioboto3[machinelearning]` - Type annotations for
[MachineLearning](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_machinelearning/)
service.
- `types-aioboto3[macie2]` - Type annotations for
[Macie2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_macie2/)
service.
- `types-aioboto3[mailmanager]` - Type annotations for
[MailManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mailmanager/)
service.
- `types-aioboto3[managedblockchain]` - Type annotations for
[ManagedBlockchain](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_managedblockchain/)
service.
- `types-aioboto3[managedblockchain-query]` - Type annotations for
[ManagedBlockchainQuery](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_managedblockchain_query/)
service.
- `types-aioboto3[marketplace-agreement]` - Type annotations for
[AgreementService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_marketplace_agreement/)
service.
- `types-aioboto3[marketplace-catalog]` - Type annotations for
[MarketplaceCatalog](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_marketplace_catalog/)
service.
- `types-aioboto3[marketplace-deployment]` - Type annotations for
[MarketplaceDeploymentService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_marketplace_deployment/)
service.
- `types-aioboto3[marketplace-entitlement]` - Type annotations for
[MarketplaceEntitlementService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_marketplace_entitlement/)
service.
- `types-aioboto3[marketplace-reporting]` - Type annotations for
[MarketplaceReportingService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_marketplace_reporting/)
service.
- `types-aioboto3[marketplacecommerceanalytics]` - Type annotations for
[MarketplaceCommerceAnalytics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_marketplacecommerceanalytics/)
service.
- `types-aioboto3[mediaconnect]` - Type annotations for
[MediaConnect](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediaconnect/)
service.
- `types-aioboto3[mediaconvert]` - Type annotations for
[MediaConvert](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediaconvert/)
service.
- `types-aioboto3[medialive]` - Type annotations for
[MediaLive](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_medialive/)
service.
- `types-aioboto3[mediapackage]` - Type annotations for
[MediaPackage](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediapackage/)
service.
- `types-aioboto3[mediapackage-vod]` - Type annotations for
[MediaPackageVod](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediapackage_vod/)
service.
- `types-aioboto3[mediapackagev2]` - Type annotations for
[Mediapackagev2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediapackagev2/)
service.
- `types-aioboto3[mediastore]` - Type annotations for
[MediaStore](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediastore/)
service.
- `types-aioboto3[mediastore-data]` - Type annotations for
[MediaStoreData](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediastore_data/)
service.
- `types-aioboto3[mediatailor]` - Type annotations for
[MediaTailor](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediatailor/)
service.
- `types-aioboto3[medical-imaging]` - Type annotations for
[HealthImaging](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_medical_imaging/)
service.
- `types-aioboto3[memorydb]` - Type annotations for
[MemoryDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_memorydb/)
service.
- `types-aioboto3[meteringmarketplace]` - Type annotations for
[MarketplaceMetering](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_meteringmarketplace/)
service.
- `types-aioboto3[mgh]` - Type annotations for
[MigrationHub](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mgh/)
service.
- `types-aioboto3[mgn]` - Type annotations for
[Mgn](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mgn/)
service.
- `types-aioboto3[migration-hub-refactor-spaces]` - Type annotations for
[MigrationHubRefactorSpaces](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_migration_hub_refactor_spaces/)
service.
- `types-aioboto3[migrationhub-config]` - Type annotations for
[MigrationHubConfig](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_migrationhub_config/)
service.
- `types-aioboto3[migrationhuborchestrator]` - Type annotations for
[MigrationHubOrchestrator](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_migrationhuborchestrator/)
service.
- `types-aioboto3[migrationhubstrategy]` - Type annotations for
[MigrationHubStrategyRecommendations](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_migrationhubstrategy/)
service.
- `types-aioboto3[mq]` - Type annotations for
[MQ](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mq/)
service.
- `types-aioboto3[mturk]` - Type annotations for
[MTurk](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mturk/)
service.
- `types-aioboto3[mwaa]` - Type annotations for
[MWAA](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mwaa/)
service.
- `types-aioboto3[neptune]` - Type annotations for
[Neptune](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_neptune/)
service.
- `types-aioboto3[neptune-graph]` - Type annotations for
[NeptuneGraph](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_neptune_graph/)
service.
- `types-aioboto3[neptunedata]` - Type annotations for
[NeptuneData](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_neptunedata/)
service.
- `types-aioboto3[network-firewall]` - Type annotations for
[NetworkFirewall](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_network_firewall/)
service.
- `types-aioboto3[networkmanager]` - Type annotations for
[NetworkManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_networkmanager/)
service.
- `types-aioboto3[networkmonitor]` - Type annotations for
[CloudWatchNetworkMonitor](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_networkmonitor/)
service.
- `types-aioboto3[oam]` - Type annotations for
[CloudWatchObservabilityAccessManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_oam/)
service.
- `types-aioboto3[omics]` - Type annotations for
[Omics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_omics/)
service.
- `types-aioboto3[opensearch]` - Type annotations for
[OpenSearchService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_opensearch/)
service.
- `types-aioboto3[opensearchserverless]` - Type annotations for
[OpenSearchServiceServerless](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_opensearchserverless/)
service.
- `types-aioboto3[opsworks]` - Type annotations for
[OpsWorks](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_opsworks/)
service.
- `types-aioboto3[opsworkscm]` - Type annotations for
[OpsWorksCM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_opsworkscm/)
service.
- `types-aioboto3[organizations]` - Type annotations for
[Organizations](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_organizations/)
service.
- `types-aioboto3[osis]` - Type annotations for
[OpenSearchIngestion](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_osis/)
service.
- `types-aioboto3[outposts]` - Type annotations for
[Outposts](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_outposts/)
service.
- `types-aioboto3[panorama]` - Type annotations for
[Panorama](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_panorama/)
service.
- `types-aioboto3[payment-cryptography]` - Type annotations for
[PaymentCryptographyControlPlane](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_payment_cryptography/)
service.
- `types-aioboto3[payment-cryptography-data]` - Type annotations for
[PaymentCryptographyDataPlane](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_payment_cryptography_data/)
service.
- `types-aioboto3[pca-connector-ad]` - Type annotations for
[PcaConnectorAd](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pca_connector_ad/)
service.
- `types-aioboto3[pca-connector-scep]` - Type annotations for
[PrivateCAConnectorforSCEP](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pca_connector_scep/)
service.
- `types-aioboto3[pcs]` - Type annotations for
[ParallelComputingService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pcs/)
service.
- `types-aioboto3[personalize]` - Type annotations for
[Personalize](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_personalize/)
service.
- `types-aioboto3[personalize-events]` - Type annotations for
[PersonalizeEvents](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_personalize_events/)
service.
- `types-aioboto3[personalize-runtime]` - Type annotations for
[PersonalizeRuntime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_personalize_runtime/)
service.
- `types-aioboto3[pi]` - Type annotations for
[PI](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pi/)
service.
- `types-aioboto3[pinpoint]` - Type annotations for
[Pinpoint](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pinpoint/)
service.
- `types-aioboto3[pinpoint-email]` - Type annotations for
[PinpointEmail](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pinpoint_email/)
service.
- `types-aioboto3[pinpoint-sms-voice]` - Type annotations for
[PinpointSMSVoice](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pinpoint_sms_voice/)
service.
- `types-aioboto3[pinpoint-sms-voice-v2]` - Type annotations for
[PinpointSMSVoiceV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pinpoint_sms_voice_v2/)
service.
- `types-aioboto3[pipes]` - Type annotations for
[EventBridgePipes](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pipes/)
service.
- `types-aioboto3[polly]` - Type annotations for
[Polly](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_polly/)
service.
- `types-aioboto3[pricing]` - Type annotations for
[Pricing](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pricing/)
service.
- `types-aioboto3[privatenetworks]` - Type annotations for
[Private5G](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_privatenetworks/)
service.
- `types-aioboto3[proton]` - Type annotations for
[Proton](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_proton/)
service.
- `types-aioboto3[qapps]` - Type annotations for
[QApps](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_qapps/)
service.
- `types-aioboto3[qbusiness]` - Type annotations for
[QBusiness](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_qbusiness/)
service.
- `types-aioboto3[qconnect]` - Type annotations for
[QConnect](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_qconnect/)
service.
- `types-aioboto3[qldb]` - Type annotations for
[QLDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_qldb/)
service.
- `types-aioboto3[qldb-session]` - Type annotations for
[QLDBSession](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_qldb_session/)
service.
- `types-aioboto3[quicksight]` - Type annotations for
[QuickSight](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_quicksight/)
service.
- `types-aioboto3[ram]` - Type annotations for
[RAM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ram/)
service.
- `types-aioboto3[rbin]` - Type annotations for
[RecycleBin](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rbin/)
service.
- `types-aioboto3[rds]` - Type annotations for
[RDS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rds/)
service.
- `types-aioboto3[rds-data]` - Type annotations for
[RDSDataService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rds_data/)
service.
- `types-aioboto3[redshift]` - Type annotations for
[Redshift](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_redshift/)
service.
- `types-aioboto3[redshift-data]` - Type annotations for
[RedshiftDataAPIService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_redshift_data/)
service.
- `types-aioboto3[redshift-serverless]` - Type annotations for
[RedshiftServerless](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_redshift_serverless/)
service.
- `types-aioboto3[rekognition]` - Type annotations for
[Rekognition](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rekognition/)
service.
- `types-aioboto3[repostspace]` - Type annotations for
[RePostPrivate](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_repostspace/)
service.
- `types-aioboto3[resiliencehub]` - Type annotations for
[ResilienceHub](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_resiliencehub/)
service.
- `types-aioboto3[resource-explorer-2]` - Type annotations for
[ResourceExplorer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_resource_explorer_2/)
service.
- `types-aioboto3[resource-groups]` - Type annotations for
[ResourceGroups](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_resource_groups/)
service.
- `types-aioboto3[resourcegroupstaggingapi]` - Type annotations for
[ResourceGroupsTaggingAPI](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_resourcegroupstaggingapi/)
service.
- `types-aioboto3[robomaker]` - Type annotations for
[RoboMaker](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_robomaker/)
service.
- `types-aioboto3[rolesanywhere]` - Type annotations for
[IAMRolesAnywhere](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rolesanywhere/)
service.
- `types-aioboto3[route53]` - Type annotations for
[Route53](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53/)
service.
- `types-aioboto3[route53-recovery-cluster]` - Type annotations for
[Route53RecoveryCluster](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53_recovery_cluster/)
service.
- `types-aioboto3[route53-recovery-control-config]` - Type annotations for
[Route53RecoveryControlConfig](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53_recovery_control_config/)
service.
- `types-aioboto3[route53-recovery-readiness]` - Type annotations for
[Route53RecoveryReadiness](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53_recovery_readiness/)
service.
- `types-aioboto3[route53domains]` - Type annotations for
[Route53Domains](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53domains/)
service.
- `types-aioboto3[route53profiles]` - Type annotations for
[Route53Profiles](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53profiles/)
service.
- `types-aioboto3[route53resolver]` - Type annotations for
[Route53Resolver](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53resolver/)
service.
- `types-aioboto3[rum]` - Type annotations for
[CloudWatchRUM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rum/)
service.
- `types-aioboto3[s3]` - Type annotations for
[S3](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_s3/)
service.
- `types-aioboto3[s3control]` - Type annotations for
[S3Control](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_s3control/)
service.
- `types-aioboto3[s3outposts]` - Type annotations for
[S3Outposts](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_s3outposts/)
service.
- `types-aioboto3[sagemaker]` - Type annotations for
[SageMaker](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker/)
service.
- `types-aioboto3[sagemaker-a2i-runtime]` - Type annotations for
[AugmentedAIRuntime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker_a2i_runtime/)
service.
- `types-aioboto3[sagemaker-edge]` - Type annotations for
[SagemakerEdgeManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker_edge/)
service.
- `types-aioboto3[sagemaker-featurestore-runtime]` - Type annotations for
[SageMakerFeatureStoreRuntime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker_featurestore_runtime/)
service.
- `types-aioboto3[sagemaker-geospatial]` - Type annotations for
[SageMakergeospatialcapabilities](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker_geospatial/)
service.
- `types-aioboto3[sagemaker-metrics]` - Type annotations for
[SageMakerMetrics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker_metrics/)
service.
- `types-aioboto3[sagemaker-runtime]` - Type annotations for
[SageMakerRuntime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker_runtime/)
service.
- `types-aioboto3[savingsplans]` - Type annotations for
[SavingsPlans](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_savingsplans/)
service.
- `types-aioboto3[scheduler]` - Type annotations for
[EventBridgeScheduler](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_scheduler/)
service.
- `types-aioboto3[schemas]` - Type annotations for
[Schemas](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_schemas/)
service.
- `types-aioboto3[sdb]` - Type annotations for
[SimpleDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sdb/)
service.
- `types-aioboto3[secretsmanager]` - Type annotations for
[SecretsManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_secretsmanager/)
service.
- `types-aioboto3[securityhub]` - Type annotations for
[SecurityHub](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_securityhub/)
service.
- `types-aioboto3[securitylake]` - Type annotations for
[SecurityLake](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_securitylake/)
service.
- `types-aioboto3[serverlessrepo]` - Type annotations for
[ServerlessApplicationRepository](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_serverlessrepo/)
service.
- `types-aioboto3[service-quotas]` - Type annotations for
[ServiceQuotas](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_service_quotas/)
service.
- `types-aioboto3[servicecatalog]` - Type annotations for
[ServiceCatalog](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_servicecatalog/)
service.
- `types-aioboto3[servicecatalog-appregistry]` - Type annotations for
[AppRegistry](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_servicecatalog_appregistry/)
service.
- `types-aioboto3[servicediscovery]` - Type annotations for
[ServiceDiscovery](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_servicediscovery/)
service.
- `types-aioboto3[ses]` - Type annotations for
[SES](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ses/)
service.
- `types-aioboto3[sesv2]` - Type annotations for
[SESV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sesv2/)
service.
- `types-aioboto3[shield]` - Type annotations for
[Shield](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_shield/)
service.
- `types-aioboto3[signer]` - Type annotations for
[Signer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_signer/)
service.
- `types-aioboto3[simspaceweaver]` - Type annotations for
[SimSpaceWeaver](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_simspaceweaver/)
service.
- `types-aioboto3[sms]` - Type annotations for
[SMS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sms/)
service.
- `types-aioboto3[sms-voice]` - Type annotations for
[PinpointSMSVoice](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sms_voice/)
service.
- `types-aioboto3[snow-device-management]` - Type annotations for
[SnowDeviceManagement](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_snow_device_management/)
service.
- `types-aioboto3[snowball]` - Type annotations for
[Snowball](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_snowball/)
service.
- `types-aioboto3[sns]` - Type annotations for
[SNS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sns/)
service.
- `types-aioboto3[socialmessaging]` - Type annotations for
[EndUserMessagingSocial](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_socialmessaging/)
service.
- `types-aioboto3[sqs]` - Type annotations for
[SQS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sqs/)
service.
- `types-aioboto3[ssm]` - Type annotations for
[SSM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ssm/)
service.
- `types-aioboto3[ssm-contacts]` - Type annotations for
[SSMContacts](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ssm_contacts/)
service.
- `types-aioboto3[ssm-incidents]` - Type annotations for
[SSMIncidents](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ssm_incidents/)
service.
- `types-aioboto3[ssm-quicksetup]` - Type annotations for
[SystemsManagerQuickSetup](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ssm_quicksetup/)
service.
- `types-aioboto3[ssm-sap]` - Type annotations for
[SsmSap](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ssm_sap/)
service.
- `types-aioboto3[sso]` - Type annotations for
[SSO](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sso/)
service.
- `types-aioboto3[sso-admin]` - Type annotations for
[SSOAdmin](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sso_admin/)
service.
- `types-aioboto3[sso-oidc]` - Type annotations for
[SSOOIDC](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sso_oidc/)
service.
- `types-aioboto3[stepfunctions]` - Type annotations for
[SFN](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_stepfunctions/)
service.
- `types-aioboto3[storagegateway]` - Type annotations for
[StorageGateway](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_storagegateway/)
service.
- `types-aioboto3[sts]` - Type annotations for
[STS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sts/)
service.
- `types-aioboto3[supplychain]` - Type annotations for
[SupplyChain](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_supplychain/)
service.
- `types-aioboto3[support]` - Type annotations for
[Support](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_support/)
service.
- `types-aioboto3[support-app]` - Type annotations for
[SupportApp](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_support_app/)
service.
- `types-aioboto3[swf]` - Type annotations for
[SWF](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_swf/)
service.
- `types-aioboto3[synthetics]` - Type annotations for
[Synthetics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_synthetics/)
service.
- `types-aioboto3[taxsettings]` - Type annotations for
[TaxSettings](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_taxsettings/)
service.
- `types-aioboto3[textract]` - Type annotations for
[Textract](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_textract/)
service.
- `types-aioboto3[timestream-influxdb]` - Type annotations for
[TimestreamInfluxDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_timestream_influxdb/)
service.
- `types-aioboto3[timestream-query]` - Type annotations for
[TimestreamQuery](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_timestream_query/)
service.
- `types-aioboto3[timestream-write]` - Type annotations for
[TimestreamWrite](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_timestream_write/)
service.
- `types-aioboto3[tnb]` - Type annotations for
[TelcoNetworkBuilder](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_tnb/)
service.
- `types-aioboto3[transcribe]` - Type annotations for
[TranscribeService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_transcribe/)
service.
- `types-aioboto3[transfer]` - Type annotations for
[Transfer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_transfer/)
service.
- `types-aioboto3[translate]` - Type annotations for
[Translate](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_translate/)
service.
- `types-aioboto3[trustedadvisor]` - Type annotations for
[TrustedAdvisorPublicAPI](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_trustedadvisor/)
service.
- `types-aioboto3[verifiedpermissions]` - Type annotations for
[VerifiedPermissions](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_verifiedpermissions/)
service.
- `types-aioboto3[voice-id]` - Type annotations for
[VoiceID](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_voice_id/)
service.
- `types-aioboto3[vpc-lattice]` - Type annotations for
[VPCLattice](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_vpc_lattice/)
service.
- `types-aioboto3[waf]` - Type annotations for
[WAF](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_waf/)
service.
- `types-aioboto3[waf-regional]` - Type annotations for
[WAFRegional](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_waf_regional/)
service.
- `types-aioboto3[wafv2]` - Type annotations for
[WAFV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_wafv2/)
service.
- `types-aioboto3[wellarchitected]` - Type annotations for
[WellArchitected](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_wellarchitected/)
service.
- `types-aioboto3[wisdom]` - Type annotations for
[ConnectWisdomService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_wisdom/)
service.
- `types-aioboto3[workdocs]` - Type annotations for
[WorkDocs](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_workdocs/)
service.
- `types-aioboto3[workmail]` - Type annotations for
[WorkMail](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_workmail/)
service.
- `types-aioboto3[workmailmessageflow]` - Type annotations for
[WorkMailMessageFlow](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_workmailmessageflow/)
service.
- `types-aioboto3[workspaces]` - Type annotations for
[WorkSpaces](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_workspaces/)
service.
- `types-aioboto3[workspaces-thin-client]` - Type annotations for
[WorkSpacesThinClient](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_workspaces_thin_client/)
service.
- `types-aioboto3[workspaces-web]` - Type annotations for
[WorkSpacesWeb](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_workspaces_web/)
service.
- `types-aioboto3[xray]` - Type annotations for
[XRay](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_xray/)
service.
Raw data
{
"_id": null,
"home_page": "https://github.com/youtype/mypy_boto3_builder",
"name": "types-aioboto3",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "aioboto3 type-annotations aioboto3-stubs mypy typeshed autocomplete",
"author": "Vlad Emelianov",
"author_email": "vlad.emelianov.nz@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/7a/be/bf10261b9456b0e7138920cf00efcaeafc980c719b5b4227528f0edbcf68/types_aioboto3-13.2.0.post1.tar.gz",
"platform": null,
"description": "<a id=\"types-aioboto3\"></a>\n\n# types-aioboto3\n\n[![PyPI - types-aioboto3](https://img.shields.io/pypi/v/types-aioboto3.svg?color=blue)](https://pypi.org/project/types-aioboto3)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/types-aioboto3.svg?color=blue)](https://pypi.org/project/types-aioboto3)\n[![Docs](https://img.shields.io/readthedocs/types-aioboto3.svg?color=blue)](https://youtype.github.io/types_aioboto3_docs/)\n[![PyPI - Downloads](https://static.pepy.tech/badge/types-aioboto3)](https://pepy.tech/project/types-aioboto3)\n\n![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)\n\nType annotations for [aioboto3 13.2.0](https://pypi.org/project/aioboto3/)\ncompatible with [VSCode](https://code.visualstudio.com/),\n[PyCharm](https://www.jetbrains.com/pycharm/),\n[Emacs](https://www.gnu.org/software/emacs/),\n[Sublime Text](https://www.sublimetext.com/),\n[mypy](https://github.com/python/mypy),\n[pyright](https://github.com/microsoft/pyright) and other tools.\n\nGenerated by\n[mypy-boto3-builder 8.2.0](https://github.com/youtype/mypy_boto3_builder).\n\nMore information can be found in\n[types-aioboto3 docs](https://youtype.github.io/types_aioboto3_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- [types-aioboto3](#types-aioboto3)\n - [How to install](#how-to-install)\n - [From PyPI with pip](#from-pypi-with-pip)\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 - [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=\"from-pypi-with-pip\"></a>\n\n### From PyPI with pip\n\nInstall `types-aioboto3` to add type annotations for `aioboto3` package.\n\n```bash\n# install type annotations only for aioboto3\npython -m pip install types-aioboto3\n\n# install aioboto3 type annotations\n# for ec2, s3, rds, lambda, sqs, dynamo and cloudformation\npython -m pip install 'types-aioboto3[essential]'\n\n# or install annotations for services you use\npython -m pip install 'types-aioboto3[acm,apigateway]'\n\n# or install annotations in sync with aioboto3 version\npython -m pip install 'types-aioboto3[aioboto3]'\n\n\n# or install all-in-one annotations for all services at once\npython -m pip install 'types-aioboto3[full]'\n\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 'types-aioboto3-lite[essential]'\n\n```\n\n<a id=\"how-to-uninstall\"></a>\n\n## How to uninstall\n\n```bash\n# uninstall types-aioboto3\npython -m pip uninstall -y types-aioboto3\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 `types-aioboto3[essential]` in your environment:\n\n```bash\npython -m pip install 'types-aioboto3[essential]'\n```\n\nBoth type checking and code completion should now work. No explicit type\nannotations required, write your `aioboto3` code as usual.\n\n<a id=\"pycharm\"></a>\n\n### PyCharm\n\nInstall `types-aioboto3-lite[essential]` in your environment:\n\n```bash\npython -m pip install 'types-aioboto3-lite[essential]'\n```\n\nBoth type checking and code completion should now work. Explicit type\nannotations **are required**.\n\nUse `types-aioboto3` package instead for implicit type discovery.\n\n<a id=\"emacs\"></a>\n\n### Emacs\n\n- Install `types-aioboto3` with services you use in your environment:\n\n```bash\npython -m pip install 'types-aioboto3[essential]'\n```\n\n- Install [use-package](https://github.com/jwiegley/use-package),\n [lsp](https://github.com/emacs-lsp/lsp-mode/),\n [company](https://github.com/company-mode/company-mode) and\n [flycheck](https://github.com/flycheck/flycheck) packages\n- Install [lsp-pyright](https://github.com/emacs-lsp/lsp-pyright) package\n\n```elisp\n(use-package lsp-pyright\n :ensure t\n :hook (python-mode . (lambda ()\n (require 'lsp-pyright)\n (lsp))) ; or lsp-deferred\n :init (when (executable-find \"python3\")\n (setq lsp-pyright-python-executable-cmd \"python3\"))\n )\n```\n\n- Make sure emacs uses the environment where you have installed\n `types-aioboto3`\n\nType checking should now work. No explicit type annotations required, write\nyour `aioboto3` code as usual.\n\n<a id=\"sublime-text\"></a>\n\n### Sublime Text\n\n- Install `types-aioboto3[essential]` with services you use in your\n environment:\n\n```bash\npython -m pip install 'types-aioboto3[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 `aioboto3` 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 `types-aioboto3[essential]` in your environment:\n\n```bash\npython -m pip install 'types-aioboto3[essential]'\n```\n\nType checking should now work. No explicit type annotations required, write\nyour `aioboto3` code as usual.\n\n<a id=\"pyright\"></a>\n\n### pyright\n\n- Install `pyright`: `npm i -g pyright`\n- Install `types-aioboto3[essential]` in your environment:\n\n```bash\npython -m pip install 'types-aioboto3[essential]'\n```\n\nOptionally, you can install `types-aioboto3` to `typings` directory.\n\nType checking should now work. No explicit type annotations required, write\nyour `aioboto3` code as usual.\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 `aioboto3`\nupdates. It delivers drop-in type annotations for you and makes sure that:\n\n- All available `aioboto3` services are covered.\n- Each public class and method of every `aioboto3` service gets valid type\n annotations extracted from `botocore` schemas.\n- Type annotations include up-to-date documentation.\n- Link to documentation is provided for every method.\n- Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.\n\n<a id=\"what's-new\"></a>\n\n## What's new\n\n<a id=\"implemented-features\"></a>\n\n### Implemented features\n\n- Fully type annotated `boto3`, `botocore`, `aiobotocore` and `aioboto3`\n libraries\n- `mypy`, `pyright`, `VSCode`, `PyCharm`, `Sublime Text` and `Emacs`\n compatibility\n- `Client`, `ServiceResource`, `Resource`, `Waiter` `Paginator` type\n annotations for each service\n- Generated `TypeDefs` for each service\n- Generated `Literals` for each service\n- Auto discovery of types for `boto3.client` and `boto3.resource` calls\n- Auto discovery of types for `session.client` and `session.resource` calls\n- Auto discovery of types for `client.get_waiter` and `client.get_paginator`\n calls\n- Auto discovery of types for `ServiceResource` and `Resource` collections\n- Auto discovery of types for `aiobotocore.Session.create_client` calls\n\n<a id=\"latest-changes\"></a>\n\n### Latest changes\n\nBuilder changelog can be found in\n[Releases](https://github.com/youtype/mypy_boto3_builder/releases).\n\n<a id=\"versioning\"></a>\n\n## Versioning\n\n`types-aioboto3` version is the same as related `aioboto3` 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[aioboto3 docs](https://youtype.github.io/types_aioboto3_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- `types-aioboto3[full]` - Type annotations for all 390 services in one package\n (recommended).\n- `types-aioboto3[all]` - Type annotations for all 390 services in separate\n packages.\n- `types-aioboto3[essential]` - Type annotations for\n [CloudFormation](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudformation/),\n [DynamoDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dynamodb/),\n [EC2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ec2/),\n [Lambda](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lambda/),\n [RDS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rds/),\n [S3](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_s3/) and\n [SQS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sqs/)\n services.\n- `types-aioboto3[aioboto3]` - Install annotations in sync with `aioboto3`\n version.\n- `types-aioboto3[accessanalyzer]` - Type annotations for\n [AccessAnalyzer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_accessanalyzer/)\n service.\n- `types-aioboto3[account]` - Type annotations for\n [Account](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_account/)\n service.\n- `types-aioboto3[acm]` - Type annotations for\n [ACM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_acm/)\n service.\n- `types-aioboto3[acm-pca]` - Type annotations for\n [ACMPCA](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_acm_pca/)\n service.\n- `types-aioboto3[amp]` - Type annotations for\n [PrometheusService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_amp/)\n service.\n- `types-aioboto3[amplify]` - Type annotations for\n [Amplify](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_amplify/)\n service.\n- `types-aioboto3[amplifybackend]` - Type annotations for\n [AmplifyBackend](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_amplifybackend/)\n service.\n- `types-aioboto3[amplifyuibuilder]` - Type annotations for\n [AmplifyUIBuilder](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_amplifyuibuilder/)\n service.\n- `types-aioboto3[apigateway]` - Type annotations for\n [APIGateway](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_apigateway/)\n service.\n- `types-aioboto3[apigatewaymanagementapi]` - Type annotations for\n [ApiGatewayManagementApi](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_apigatewaymanagementapi/)\n service.\n- `types-aioboto3[apigatewayv2]` - Type annotations for\n [ApiGatewayV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_apigatewayv2/)\n service.\n- `types-aioboto3[appconfig]` - Type annotations for\n [AppConfig](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appconfig/)\n service.\n- `types-aioboto3[appconfigdata]` - Type annotations for\n [AppConfigData](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appconfigdata/)\n service.\n- `types-aioboto3[appfabric]` - Type annotations for\n [AppFabric](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appfabric/)\n service.\n- `types-aioboto3[appflow]` - Type annotations for\n [Appflow](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appflow/)\n service.\n- `types-aioboto3[appintegrations]` - Type annotations for\n [AppIntegrationsService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appintegrations/)\n service.\n- `types-aioboto3[application-autoscaling]` - Type annotations for\n [ApplicationAutoScaling](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_application_autoscaling/)\n service.\n- `types-aioboto3[application-insights]` - Type annotations for\n [ApplicationInsights](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_application_insights/)\n service.\n- `types-aioboto3[application-signals]` - Type annotations for\n [CloudWatchApplicationSignals](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_application_signals/)\n service.\n- `types-aioboto3[applicationcostprofiler]` - Type annotations for\n [ApplicationCostProfiler](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_applicationcostprofiler/)\n service.\n- `types-aioboto3[appmesh]` - Type annotations for\n [AppMesh](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appmesh/)\n service.\n- `types-aioboto3[apprunner]` - Type annotations for\n [AppRunner](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_apprunner/)\n service.\n- `types-aioboto3[appstream]` - Type annotations for\n [AppStream](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appstream/)\n service.\n- `types-aioboto3[appsync]` - Type annotations for\n [AppSync](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_appsync/)\n service.\n- `types-aioboto3[apptest]` - Type annotations for\n [MainframeModernizationApplicationTesting](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_apptest/)\n service.\n- `types-aioboto3[arc-zonal-shift]` - Type annotations for\n [ARCZonalShift](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_arc_zonal_shift/)\n service.\n- `types-aioboto3[artifact]` - Type annotations for\n [Artifact](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_artifact/)\n service.\n- `types-aioboto3[athena]` - Type annotations for\n [Athena](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_athena/)\n service.\n- `types-aioboto3[auditmanager]` - Type annotations for\n [AuditManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_auditmanager/)\n service.\n- `types-aioboto3[autoscaling]` - Type annotations for\n [AutoScaling](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_autoscaling/)\n service.\n- `types-aioboto3[autoscaling-plans]` - Type annotations for\n [AutoScalingPlans](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_autoscaling_plans/)\n service.\n- `types-aioboto3[b2bi]` - Type annotations for\n [B2BI](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_b2bi/)\n service.\n- `types-aioboto3[backup]` - Type annotations for\n [Backup](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_backup/)\n service.\n- `types-aioboto3[backup-gateway]` - Type annotations for\n [BackupGateway](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_backup_gateway/)\n service.\n- `types-aioboto3[batch]` - Type annotations for\n [Batch](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_batch/)\n service.\n- `types-aioboto3[bcm-data-exports]` - Type annotations for\n [BillingandCostManagementDataExports](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_bcm_data_exports/)\n service.\n- `types-aioboto3[bedrock]` - Type annotations for\n [Bedrock](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_bedrock/)\n service.\n- `types-aioboto3[bedrock-agent]` - Type annotations for\n [AgentsforBedrock](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_bedrock_agent/)\n service.\n- `types-aioboto3[bedrock-agent-runtime]` - Type annotations for\n [AgentsforBedrockRuntime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_bedrock_agent_runtime/)\n service.\n- `types-aioboto3[bedrock-runtime]` - Type annotations for\n [BedrockRuntime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_bedrock_runtime/)\n service.\n- `types-aioboto3[billingconductor]` - Type annotations for\n [BillingConductor](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_billingconductor/)\n service.\n- `types-aioboto3[braket]` - Type annotations for\n [Braket](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_braket/)\n service.\n- `types-aioboto3[budgets]` - Type annotations for\n [Budgets](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_budgets/)\n service.\n- `types-aioboto3[ce]` - Type annotations for\n [CostExplorer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ce/)\n service.\n- `types-aioboto3[chatbot]` - Type annotations for\n [Chatbot](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chatbot/)\n service.\n- `types-aioboto3[chime]` - Type annotations for\n [Chime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chime/)\n service.\n- `types-aioboto3[chime-sdk-identity]` - Type annotations for\n [ChimeSDKIdentity](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chime_sdk_identity/)\n service.\n- `types-aioboto3[chime-sdk-media-pipelines]` - Type annotations for\n [ChimeSDKMediaPipelines](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chime_sdk_media_pipelines/)\n service.\n- `types-aioboto3[chime-sdk-meetings]` - Type annotations for\n [ChimeSDKMeetings](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chime_sdk_meetings/)\n service.\n- `types-aioboto3[chime-sdk-messaging]` - Type annotations for\n [ChimeSDKMessaging](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chime_sdk_messaging/)\n service.\n- `types-aioboto3[chime-sdk-voice]` - Type annotations for\n [ChimeSDKVoice](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_chime_sdk_voice/)\n service.\n- `types-aioboto3[cleanrooms]` - Type annotations for\n [CleanRoomsService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cleanrooms/)\n service.\n- `types-aioboto3[cleanroomsml]` - Type annotations for\n [CleanRoomsML](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cleanroomsml/)\n service.\n- `types-aioboto3[cloud9]` - Type annotations for\n [Cloud9](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloud9/)\n service.\n- `types-aioboto3[cloudcontrol]` - Type annotations for\n [CloudControlApi](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudcontrol/)\n service.\n- `types-aioboto3[clouddirectory]` - Type annotations for\n [CloudDirectory](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_clouddirectory/)\n service.\n- `types-aioboto3[cloudformation]` - Type annotations for\n [CloudFormation](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudformation/)\n service.\n- `types-aioboto3[cloudfront]` - Type annotations for\n [CloudFront](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudfront/)\n service.\n- `types-aioboto3[cloudfront-keyvaluestore]` - Type annotations for\n [CloudFrontKeyValueStore](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudfront_keyvaluestore/)\n service.\n- `types-aioboto3[cloudhsm]` - Type annotations for\n [CloudHSM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudhsm/)\n service.\n- `types-aioboto3[cloudhsmv2]` - Type annotations for\n [CloudHSMV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudhsmv2/)\n service.\n- `types-aioboto3[cloudsearch]` - Type annotations for\n [CloudSearch](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudsearch/)\n service.\n- `types-aioboto3[cloudsearchdomain]` - Type annotations for\n [CloudSearchDomain](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudsearchdomain/)\n service.\n- `types-aioboto3[cloudtrail]` - Type annotations for\n [CloudTrail](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudtrail/)\n service.\n- `types-aioboto3[cloudtrail-data]` - Type annotations for\n [CloudTrailDataService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudtrail_data/)\n service.\n- `types-aioboto3[cloudwatch]` - Type annotations for\n [CloudWatch](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cloudwatch/)\n service.\n- `types-aioboto3[codeartifact]` - Type annotations for\n [CodeArtifact](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codeartifact/)\n service.\n- `types-aioboto3[codebuild]` - Type annotations for\n [CodeBuild](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codebuild/)\n service.\n- `types-aioboto3[codecatalyst]` - Type annotations for\n [CodeCatalyst](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codecatalyst/)\n service.\n- `types-aioboto3[codecommit]` - Type annotations for\n [CodeCommit](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codecommit/)\n service.\n- `types-aioboto3[codeconnections]` - Type annotations for\n [CodeConnections](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codeconnections/)\n service.\n- `types-aioboto3[codedeploy]` - Type annotations for\n [CodeDeploy](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codedeploy/)\n service.\n- `types-aioboto3[codeguru-reviewer]` - Type annotations for\n [CodeGuruReviewer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codeguru_reviewer/)\n service.\n- `types-aioboto3[codeguru-security]` - Type annotations for\n [CodeGuruSecurity](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codeguru_security/)\n service.\n- `types-aioboto3[codeguruprofiler]` - Type annotations for\n [CodeGuruProfiler](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codeguruprofiler/)\n service.\n- `types-aioboto3[codepipeline]` - Type annotations for\n [CodePipeline](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codepipeline/)\n service.\n- `types-aioboto3[codestar-connections]` - Type annotations for\n [CodeStarconnections](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codestar_connections/)\n service.\n- `types-aioboto3[codestar-notifications]` - Type annotations for\n [CodeStarNotifications](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_codestar_notifications/)\n service.\n- `types-aioboto3[cognito-identity]` - Type annotations for\n [CognitoIdentity](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cognito_identity/)\n service.\n- `types-aioboto3[cognito-idp]` - Type annotations for\n [CognitoIdentityProvider](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cognito_idp/)\n service.\n- `types-aioboto3[cognito-sync]` - Type annotations for\n [CognitoSync](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cognito_sync/)\n service.\n- `types-aioboto3[comprehend]` - Type annotations for\n [Comprehend](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_comprehend/)\n service.\n- `types-aioboto3[comprehendmedical]` - Type annotations for\n [ComprehendMedical](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_comprehendmedical/)\n service.\n- `types-aioboto3[compute-optimizer]` - Type annotations for\n [ComputeOptimizer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_compute_optimizer/)\n service.\n- `types-aioboto3[config]` - Type annotations for\n [ConfigService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_config/)\n service.\n- `types-aioboto3[connect]` - Type annotations for\n [Connect](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_connect/)\n service.\n- `types-aioboto3[connect-contact-lens]` - Type annotations for\n [ConnectContactLens](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_connect_contact_lens/)\n service.\n- `types-aioboto3[connectcampaigns]` - Type annotations for\n [ConnectCampaignService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_connectcampaigns/)\n service.\n- `types-aioboto3[connectcases]` - Type annotations for\n [ConnectCases](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_connectcases/)\n service.\n- `types-aioboto3[connectparticipant]` - Type annotations for\n [ConnectParticipant](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_connectparticipant/)\n service.\n- `types-aioboto3[controlcatalog]` - Type annotations for\n [ControlCatalog](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_controlcatalog/)\n service.\n- `types-aioboto3[controltower]` - Type annotations for\n [ControlTower](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_controltower/)\n service.\n- `types-aioboto3[cost-optimization-hub]` - Type annotations for\n [CostOptimizationHub](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cost_optimization_hub/)\n service.\n- `types-aioboto3[cur]` - Type annotations for\n [CostandUsageReportService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_cur/)\n service.\n- `types-aioboto3[customer-profiles]` - Type annotations for\n [CustomerProfiles](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_customer_profiles/)\n service.\n- `types-aioboto3[databrew]` - Type annotations for\n [GlueDataBrew](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_databrew/)\n service.\n- `types-aioboto3[dataexchange]` - Type annotations for\n [DataExchange](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dataexchange/)\n service.\n- `types-aioboto3[datapipeline]` - Type annotations for\n [DataPipeline](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_datapipeline/)\n service.\n- `types-aioboto3[datasync]` - Type annotations for\n [DataSync](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_datasync/)\n service.\n- `types-aioboto3[datazone]` - Type annotations for\n [DataZone](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_datazone/)\n service.\n- `types-aioboto3[dax]` - Type annotations for\n [DAX](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dax/)\n service.\n- `types-aioboto3[deadline]` - Type annotations for\n [DeadlineCloud](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_deadline/)\n service.\n- `types-aioboto3[detective]` - Type annotations for\n [Detective](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_detective/)\n service.\n- `types-aioboto3[devicefarm]` - Type annotations for\n [DeviceFarm](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_devicefarm/)\n service.\n- `types-aioboto3[devops-guru]` - Type annotations for\n [DevOpsGuru](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_devops_guru/)\n service.\n- `types-aioboto3[directconnect]` - Type annotations for\n [DirectConnect](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_directconnect/)\n service.\n- `types-aioboto3[discovery]` - Type annotations for\n [ApplicationDiscoveryService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_discovery/)\n service.\n- `types-aioboto3[dlm]` - Type annotations for\n [DLM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dlm/)\n service.\n- `types-aioboto3[dms]` - Type annotations for\n [DatabaseMigrationService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dms/)\n service.\n- `types-aioboto3[docdb]` - Type annotations for\n [DocDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_docdb/)\n service.\n- `types-aioboto3[docdb-elastic]` - Type annotations for\n [DocDBElastic](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_docdb_elastic/)\n service.\n- `types-aioboto3[drs]` - Type annotations for\n [Drs](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_drs/)\n service.\n- `types-aioboto3[ds]` - Type annotations for\n [DirectoryService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ds/)\n service.\n- `types-aioboto3[ds-data]` - Type annotations for\n [DirectoryServiceData](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ds_data/)\n service.\n- `types-aioboto3[dynamodb]` - Type annotations for\n [DynamoDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dynamodb/)\n service.\n- `types-aioboto3[dynamodbstreams]` - Type annotations for\n [DynamoDBStreams](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_dynamodbstreams/)\n service.\n- `types-aioboto3[ebs]` - Type annotations for\n [EBS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ebs/)\n service.\n- `types-aioboto3[ec2]` - Type annotations for\n [EC2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ec2/)\n service.\n- `types-aioboto3[ec2-instance-connect]` - Type annotations for\n [EC2InstanceConnect](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ec2_instance_connect/)\n service.\n- `types-aioboto3[ecr]` - Type annotations for\n [ECR](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ecr/)\n service.\n- `types-aioboto3[ecr-public]` - Type annotations for\n [ECRPublic](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ecr_public/)\n service.\n- `types-aioboto3[ecs]` - Type annotations for\n [ECS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ecs/)\n service.\n- `types-aioboto3[efs]` - Type annotations for\n [EFS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_efs/)\n service.\n- `types-aioboto3[eks]` - Type annotations for\n [EKS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_eks/)\n service.\n- `types-aioboto3[eks-auth]` - Type annotations for\n [EKSAuth](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_eks_auth/)\n service.\n- `types-aioboto3[elastic-inference]` - Type annotations for\n [ElasticInference](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_elastic_inference/)\n service.\n- `types-aioboto3[elasticache]` - Type annotations for\n [ElastiCache](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_elasticache/)\n service.\n- `types-aioboto3[elasticbeanstalk]` - Type annotations for\n [ElasticBeanstalk](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_elasticbeanstalk/)\n service.\n- `types-aioboto3[elastictranscoder]` - Type annotations for\n [ElasticTranscoder](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_elastictranscoder/)\n service.\n- `types-aioboto3[elb]` - Type annotations for\n [ElasticLoadBalancing](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_elb/)\n service.\n- `types-aioboto3[elbv2]` - Type annotations for\n [ElasticLoadBalancingv2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_elbv2/)\n service.\n- `types-aioboto3[emr]` - Type annotations for\n [EMR](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_emr/)\n service.\n- `types-aioboto3[emr-containers]` - Type annotations for\n [EMRContainers](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_emr_containers/)\n service.\n- `types-aioboto3[emr-serverless]` - Type annotations for\n [EMRServerless](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_emr_serverless/)\n service.\n- `types-aioboto3[entityresolution]` - Type annotations for\n [EntityResolution](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_entityresolution/)\n service.\n- `types-aioboto3[es]` - Type annotations for\n [ElasticsearchService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_es/)\n service.\n- `types-aioboto3[events]` - Type annotations for\n [EventBridge](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_events/)\n service.\n- `types-aioboto3[evidently]` - Type annotations for\n [CloudWatchEvidently](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_evidently/)\n service.\n- `types-aioboto3[finspace]` - Type annotations for\n [Finspace](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_finspace/)\n service.\n- `types-aioboto3[finspace-data]` - Type annotations for\n [FinSpaceData](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_finspace_data/)\n service.\n- `types-aioboto3[firehose]` - Type annotations for\n [Firehose](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_firehose/)\n service.\n- `types-aioboto3[fis]` - Type annotations for\n [FIS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_fis/)\n service.\n- `types-aioboto3[fms]` - Type annotations for\n [FMS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_fms/)\n service.\n- `types-aioboto3[forecast]` - Type annotations for\n [ForecastService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_forecast/)\n service.\n- `types-aioboto3[forecastquery]` - Type annotations for\n [ForecastQueryService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_forecastquery/)\n service.\n- `types-aioboto3[frauddetector]` - Type annotations for\n [FraudDetector](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_frauddetector/)\n service.\n- `types-aioboto3[freetier]` - Type annotations for\n [FreeTier](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_freetier/)\n service.\n- `types-aioboto3[fsx]` - Type annotations for\n [FSx](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_fsx/)\n service.\n- `types-aioboto3[gamelift]` - Type annotations for\n [GameLift](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_gamelift/)\n service.\n- `types-aioboto3[geo-maps]` - Type annotations for\n [LocationServiceMapsV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_geo_maps/)\n service.\n- `types-aioboto3[geo-places]` - Type annotations for\n [LocationServicePlacesV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_geo_places/)\n service.\n- `types-aioboto3[geo-routes]` - Type annotations for\n [LocationServiceRoutesV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_geo_routes/)\n service.\n- `types-aioboto3[glacier]` - Type annotations for\n [Glacier](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_glacier/)\n service.\n- `types-aioboto3[globalaccelerator]` - Type annotations for\n [GlobalAccelerator](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_globalaccelerator/)\n service.\n- `types-aioboto3[glue]` - Type annotations for\n [Glue](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_glue/)\n service.\n- `types-aioboto3[grafana]` - Type annotations for\n [ManagedGrafana](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_grafana/)\n service.\n- `types-aioboto3[greengrass]` - Type annotations for\n [Greengrass](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_greengrass/)\n service.\n- `types-aioboto3[greengrassv2]` - Type annotations for\n [GreengrassV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_greengrassv2/)\n service.\n- `types-aioboto3[groundstation]` - Type annotations for\n [GroundStation](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_groundstation/)\n service.\n- `types-aioboto3[guardduty]` - Type annotations for\n [GuardDuty](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_guardduty/)\n service.\n- `types-aioboto3[health]` - Type annotations for\n [Health](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_health/)\n service.\n- `types-aioboto3[healthlake]` - Type annotations for\n [HealthLake](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_healthlake/)\n service.\n- `types-aioboto3[iam]` - Type annotations for\n [IAM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iam/)\n service.\n- `types-aioboto3[identitystore]` - Type annotations for\n [IdentityStore](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_identitystore/)\n service.\n- `types-aioboto3[imagebuilder]` - Type annotations for\n [Imagebuilder](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_imagebuilder/)\n service.\n- `types-aioboto3[importexport]` - Type annotations for\n [ImportExport](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_importexport/)\n service.\n- `types-aioboto3[inspector]` - Type annotations for\n [Inspector](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_inspector/)\n service.\n- `types-aioboto3[inspector-scan]` - Type annotations for\n [Inspectorscan](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_inspector_scan/)\n service.\n- `types-aioboto3[inspector2]` - Type annotations for\n [Inspector2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_inspector2/)\n service.\n- `types-aioboto3[internetmonitor]` - Type annotations for\n [CloudWatchInternetMonitor](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_internetmonitor/)\n service.\n- `types-aioboto3[iot]` - Type annotations for\n [IoT](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iot/)\n service.\n- `types-aioboto3[iot-data]` - Type annotations for\n [IoTDataPlane](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iot_data/)\n service.\n- `types-aioboto3[iot-jobs-data]` - Type annotations for\n [IoTJobsDataPlane](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iot_jobs_data/)\n service.\n- `types-aioboto3[iot1click-devices]` - Type annotations for\n [IoT1ClickDevicesService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iot1click_devices/)\n service.\n- `types-aioboto3[iot1click-projects]` - Type annotations for\n [IoT1ClickProjects](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iot1click_projects/)\n service.\n- `types-aioboto3[iotanalytics]` - Type annotations for\n [IoTAnalytics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotanalytics/)\n service.\n- `types-aioboto3[iotdeviceadvisor]` - Type annotations for\n [IoTDeviceAdvisor](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotdeviceadvisor/)\n service.\n- `types-aioboto3[iotevents]` - Type annotations for\n [IoTEvents](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotevents/)\n service.\n- `types-aioboto3[iotevents-data]` - Type annotations for\n [IoTEventsData](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotevents_data/)\n service.\n- `types-aioboto3[iotfleethub]` - Type annotations for\n [IoTFleetHub](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotfleethub/)\n service.\n- `types-aioboto3[iotfleetwise]` - Type annotations for\n [IoTFleetWise](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotfleetwise/)\n service.\n- `types-aioboto3[iotsecuretunneling]` - Type annotations for\n [IoTSecureTunneling](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotsecuretunneling/)\n service.\n- `types-aioboto3[iotsitewise]` - Type annotations for\n [IoTSiteWise](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotsitewise/)\n service.\n- `types-aioboto3[iotthingsgraph]` - Type annotations for\n [IoTThingsGraph](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotthingsgraph/)\n service.\n- `types-aioboto3[iottwinmaker]` - Type annotations for\n [IoTTwinMaker](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iottwinmaker/)\n service.\n- `types-aioboto3[iotwireless]` - Type annotations for\n [IoTWireless](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_iotwireless/)\n service.\n- `types-aioboto3[ivs]` - Type annotations for\n [IVS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ivs/)\n service.\n- `types-aioboto3[ivs-realtime]` - Type annotations for\n [Ivsrealtime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ivs_realtime/)\n service.\n- `types-aioboto3[ivschat]` - Type annotations for\n [Ivschat](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ivschat/)\n service.\n- `types-aioboto3[kafka]` - Type annotations for\n [Kafka](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kafka/)\n service.\n- `types-aioboto3[kafkaconnect]` - Type annotations for\n [KafkaConnect](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kafkaconnect/)\n service.\n- `types-aioboto3[kendra]` - Type annotations for\n [Kendra](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kendra/)\n service.\n- `types-aioboto3[kendra-ranking]` - Type annotations for\n [KendraRanking](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kendra_ranking/)\n service.\n- `types-aioboto3[keyspaces]` - Type annotations for\n [Keyspaces](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_keyspaces/)\n service.\n- `types-aioboto3[kinesis]` - Type annotations for\n [Kinesis](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesis/)\n service.\n- `types-aioboto3[kinesis-video-archived-media]` - Type annotations for\n [KinesisVideoArchivedMedia](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesis_video_archived_media/)\n service.\n- `types-aioboto3[kinesis-video-media]` - Type annotations for\n [KinesisVideoMedia](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesis_video_media/)\n service.\n- `types-aioboto3[kinesis-video-signaling]` - Type annotations for\n [KinesisVideoSignalingChannels](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesis_video_signaling/)\n service.\n- `types-aioboto3[kinesis-video-webrtc-storage]` - Type annotations for\n [KinesisVideoWebRTCStorage](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesis_video_webrtc_storage/)\n service.\n- `types-aioboto3[kinesisanalytics]` - Type annotations for\n [KinesisAnalytics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesisanalytics/)\n service.\n- `types-aioboto3[kinesisanalyticsv2]` - Type annotations for\n [KinesisAnalyticsV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesisanalyticsv2/)\n service.\n- `types-aioboto3[kinesisvideo]` - Type annotations for\n [KinesisVideo](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kinesisvideo/)\n service.\n- `types-aioboto3[kms]` - Type annotations for\n [KMS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_kms/)\n service.\n- `types-aioboto3[lakeformation]` - Type annotations for\n [LakeFormation](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lakeformation/)\n service.\n- `types-aioboto3[lambda]` - Type annotations for\n [Lambda](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lambda/)\n service.\n- `types-aioboto3[launch-wizard]` - Type annotations for\n [LaunchWizard](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_launch_wizard/)\n service.\n- `types-aioboto3[lex-models]` - Type annotations for\n [LexModelBuildingService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lex_models/)\n service.\n- `types-aioboto3[lex-runtime]` - Type annotations for\n [LexRuntimeService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lex_runtime/)\n service.\n- `types-aioboto3[lexv2-models]` - Type annotations for\n [LexModelsV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lexv2_models/)\n service.\n- `types-aioboto3[lexv2-runtime]` - Type annotations for\n [LexRuntimeV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lexv2_runtime/)\n service.\n- `types-aioboto3[license-manager]` - Type annotations for\n [LicenseManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_license_manager/)\n service.\n- `types-aioboto3[license-manager-linux-subscriptions]` - Type annotations for\n [LicenseManagerLinuxSubscriptions](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_license_manager_linux_subscriptions/)\n service.\n- `types-aioboto3[license-manager-user-subscriptions]` - Type annotations for\n [LicenseManagerUserSubscriptions](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_license_manager_user_subscriptions/)\n service.\n- `types-aioboto3[lightsail]` - Type annotations for\n [Lightsail](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lightsail/)\n service.\n- `types-aioboto3[location]` - Type annotations for\n [LocationService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_location/)\n service.\n- `types-aioboto3[logs]` - Type annotations for\n [CloudWatchLogs](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_logs/)\n service.\n- `types-aioboto3[lookoutequipment]` - Type annotations for\n [LookoutEquipment](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lookoutequipment/)\n service.\n- `types-aioboto3[lookoutmetrics]` - Type annotations for\n [LookoutMetrics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lookoutmetrics/)\n service.\n- `types-aioboto3[lookoutvision]` - Type annotations for\n [LookoutforVision](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_lookoutvision/)\n service.\n- `types-aioboto3[m2]` - Type annotations for\n [MainframeModernization](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_m2/)\n service.\n- `types-aioboto3[machinelearning]` - Type annotations for\n [MachineLearning](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_machinelearning/)\n service.\n- `types-aioboto3[macie2]` - Type annotations for\n [Macie2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_macie2/)\n service.\n- `types-aioboto3[mailmanager]` - Type annotations for\n [MailManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mailmanager/)\n service.\n- `types-aioboto3[managedblockchain]` - Type annotations for\n [ManagedBlockchain](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_managedblockchain/)\n service.\n- `types-aioboto3[managedblockchain-query]` - Type annotations for\n [ManagedBlockchainQuery](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_managedblockchain_query/)\n service.\n- `types-aioboto3[marketplace-agreement]` - Type annotations for\n [AgreementService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_marketplace_agreement/)\n service.\n- `types-aioboto3[marketplace-catalog]` - Type annotations for\n [MarketplaceCatalog](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_marketplace_catalog/)\n service.\n- `types-aioboto3[marketplace-deployment]` - Type annotations for\n [MarketplaceDeploymentService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_marketplace_deployment/)\n service.\n- `types-aioboto3[marketplace-entitlement]` - Type annotations for\n [MarketplaceEntitlementService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_marketplace_entitlement/)\n service.\n- `types-aioboto3[marketplace-reporting]` - Type annotations for\n [MarketplaceReportingService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_marketplace_reporting/)\n service.\n- `types-aioboto3[marketplacecommerceanalytics]` - Type annotations for\n [MarketplaceCommerceAnalytics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_marketplacecommerceanalytics/)\n service.\n- `types-aioboto3[mediaconnect]` - Type annotations for\n [MediaConnect](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediaconnect/)\n service.\n- `types-aioboto3[mediaconvert]` - Type annotations for\n [MediaConvert](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediaconvert/)\n service.\n- `types-aioboto3[medialive]` - Type annotations for\n [MediaLive](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_medialive/)\n service.\n- `types-aioboto3[mediapackage]` - Type annotations for\n [MediaPackage](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediapackage/)\n service.\n- `types-aioboto3[mediapackage-vod]` - Type annotations for\n [MediaPackageVod](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediapackage_vod/)\n service.\n- `types-aioboto3[mediapackagev2]` - Type annotations for\n [Mediapackagev2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediapackagev2/)\n service.\n- `types-aioboto3[mediastore]` - Type annotations for\n [MediaStore](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediastore/)\n service.\n- `types-aioboto3[mediastore-data]` - Type annotations for\n [MediaStoreData](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediastore_data/)\n service.\n- `types-aioboto3[mediatailor]` - Type annotations for\n [MediaTailor](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mediatailor/)\n service.\n- `types-aioboto3[medical-imaging]` - Type annotations for\n [HealthImaging](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_medical_imaging/)\n service.\n- `types-aioboto3[memorydb]` - Type annotations for\n [MemoryDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_memorydb/)\n service.\n- `types-aioboto3[meteringmarketplace]` - Type annotations for\n [MarketplaceMetering](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_meteringmarketplace/)\n service.\n- `types-aioboto3[mgh]` - Type annotations for\n [MigrationHub](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mgh/)\n service.\n- `types-aioboto3[mgn]` - Type annotations for\n [Mgn](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mgn/)\n service.\n- `types-aioboto3[migration-hub-refactor-spaces]` - Type annotations for\n [MigrationHubRefactorSpaces](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_migration_hub_refactor_spaces/)\n service.\n- `types-aioboto3[migrationhub-config]` - Type annotations for\n [MigrationHubConfig](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_migrationhub_config/)\n service.\n- `types-aioboto3[migrationhuborchestrator]` - Type annotations for\n [MigrationHubOrchestrator](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_migrationhuborchestrator/)\n service.\n- `types-aioboto3[migrationhubstrategy]` - Type annotations for\n [MigrationHubStrategyRecommendations](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_migrationhubstrategy/)\n service.\n- `types-aioboto3[mq]` - Type annotations for\n [MQ](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mq/)\n service.\n- `types-aioboto3[mturk]` - Type annotations for\n [MTurk](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mturk/)\n service.\n- `types-aioboto3[mwaa]` - Type annotations for\n [MWAA](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_mwaa/)\n service.\n- `types-aioboto3[neptune]` - Type annotations for\n [Neptune](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_neptune/)\n service.\n- `types-aioboto3[neptune-graph]` - Type annotations for\n [NeptuneGraph](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_neptune_graph/)\n service.\n- `types-aioboto3[neptunedata]` - Type annotations for\n [NeptuneData](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_neptunedata/)\n service.\n- `types-aioboto3[network-firewall]` - Type annotations for\n [NetworkFirewall](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_network_firewall/)\n service.\n- `types-aioboto3[networkmanager]` - Type annotations for\n [NetworkManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_networkmanager/)\n service.\n- `types-aioboto3[networkmonitor]` - Type annotations for\n [CloudWatchNetworkMonitor](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_networkmonitor/)\n service.\n- `types-aioboto3[oam]` - Type annotations for\n [CloudWatchObservabilityAccessManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_oam/)\n service.\n- `types-aioboto3[omics]` - Type annotations for\n [Omics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_omics/)\n service.\n- `types-aioboto3[opensearch]` - Type annotations for\n [OpenSearchService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_opensearch/)\n service.\n- `types-aioboto3[opensearchserverless]` - Type annotations for\n [OpenSearchServiceServerless](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_opensearchserverless/)\n service.\n- `types-aioboto3[opsworks]` - Type annotations for\n [OpsWorks](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_opsworks/)\n service.\n- `types-aioboto3[opsworkscm]` - Type annotations for\n [OpsWorksCM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_opsworkscm/)\n service.\n- `types-aioboto3[organizations]` - Type annotations for\n [Organizations](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_organizations/)\n service.\n- `types-aioboto3[osis]` - Type annotations for\n [OpenSearchIngestion](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_osis/)\n service.\n- `types-aioboto3[outposts]` - Type annotations for\n [Outposts](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_outposts/)\n service.\n- `types-aioboto3[panorama]` - Type annotations for\n [Panorama](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_panorama/)\n service.\n- `types-aioboto3[payment-cryptography]` - Type annotations for\n [PaymentCryptographyControlPlane](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_payment_cryptography/)\n service.\n- `types-aioboto3[payment-cryptography-data]` - Type annotations for\n [PaymentCryptographyDataPlane](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_payment_cryptography_data/)\n service.\n- `types-aioboto3[pca-connector-ad]` - Type annotations for\n [PcaConnectorAd](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pca_connector_ad/)\n service.\n- `types-aioboto3[pca-connector-scep]` - Type annotations for\n [PrivateCAConnectorforSCEP](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pca_connector_scep/)\n service.\n- `types-aioboto3[pcs]` - Type annotations for\n [ParallelComputingService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pcs/)\n service.\n- `types-aioboto3[personalize]` - Type annotations for\n [Personalize](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_personalize/)\n service.\n- `types-aioboto3[personalize-events]` - Type annotations for\n [PersonalizeEvents](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_personalize_events/)\n service.\n- `types-aioboto3[personalize-runtime]` - Type annotations for\n [PersonalizeRuntime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_personalize_runtime/)\n service.\n- `types-aioboto3[pi]` - Type annotations for\n [PI](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pi/)\n service.\n- `types-aioboto3[pinpoint]` - Type annotations for\n [Pinpoint](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pinpoint/)\n service.\n- `types-aioboto3[pinpoint-email]` - Type annotations for\n [PinpointEmail](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pinpoint_email/)\n service.\n- `types-aioboto3[pinpoint-sms-voice]` - Type annotations for\n [PinpointSMSVoice](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pinpoint_sms_voice/)\n service.\n- `types-aioboto3[pinpoint-sms-voice-v2]` - Type annotations for\n [PinpointSMSVoiceV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pinpoint_sms_voice_v2/)\n service.\n- `types-aioboto3[pipes]` - Type annotations for\n [EventBridgePipes](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pipes/)\n service.\n- `types-aioboto3[polly]` - Type annotations for\n [Polly](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_polly/)\n service.\n- `types-aioboto3[pricing]` - Type annotations for\n [Pricing](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_pricing/)\n service.\n- `types-aioboto3[privatenetworks]` - Type annotations for\n [Private5G](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_privatenetworks/)\n service.\n- `types-aioboto3[proton]` - Type annotations for\n [Proton](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_proton/)\n service.\n- `types-aioboto3[qapps]` - Type annotations for\n [QApps](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_qapps/)\n service.\n- `types-aioboto3[qbusiness]` - Type annotations for\n [QBusiness](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_qbusiness/)\n service.\n- `types-aioboto3[qconnect]` - Type annotations for\n [QConnect](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_qconnect/)\n service.\n- `types-aioboto3[qldb]` - Type annotations for\n [QLDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_qldb/)\n service.\n- `types-aioboto3[qldb-session]` - Type annotations for\n [QLDBSession](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_qldb_session/)\n service.\n- `types-aioboto3[quicksight]` - Type annotations for\n [QuickSight](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_quicksight/)\n service.\n- `types-aioboto3[ram]` - Type annotations for\n [RAM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ram/)\n service.\n- `types-aioboto3[rbin]` - Type annotations for\n [RecycleBin](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rbin/)\n service.\n- `types-aioboto3[rds]` - Type annotations for\n [RDS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rds/)\n service.\n- `types-aioboto3[rds-data]` - Type annotations for\n [RDSDataService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rds_data/)\n service.\n- `types-aioboto3[redshift]` - Type annotations for\n [Redshift](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_redshift/)\n service.\n- `types-aioboto3[redshift-data]` - Type annotations for\n [RedshiftDataAPIService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_redshift_data/)\n service.\n- `types-aioboto3[redshift-serverless]` - Type annotations for\n [RedshiftServerless](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_redshift_serverless/)\n service.\n- `types-aioboto3[rekognition]` - Type annotations for\n [Rekognition](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rekognition/)\n service.\n- `types-aioboto3[repostspace]` - Type annotations for\n [RePostPrivate](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_repostspace/)\n service.\n- `types-aioboto3[resiliencehub]` - Type annotations for\n [ResilienceHub](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_resiliencehub/)\n service.\n- `types-aioboto3[resource-explorer-2]` - Type annotations for\n [ResourceExplorer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_resource_explorer_2/)\n service.\n- `types-aioboto3[resource-groups]` - Type annotations for\n [ResourceGroups](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_resource_groups/)\n service.\n- `types-aioboto3[resourcegroupstaggingapi]` - Type annotations for\n [ResourceGroupsTaggingAPI](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_resourcegroupstaggingapi/)\n service.\n- `types-aioboto3[robomaker]` - Type annotations for\n [RoboMaker](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_robomaker/)\n service.\n- `types-aioboto3[rolesanywhere]` - Type annotations for\n [IAMRolesAnywhere](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rolesanywhere/)\n service.\n- `types-aioboto3[route53]` - Type annotations for\n [Route53](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53/)\n service.\n- `types-aioboto3[route53-recovery-cluster]` - Type annotations for\n [Route53RecoveryCluster](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53_recovery_cluster/)\n service.\n- `types-aioboto3[route53-recovery-control-config]` - Type annotations for\n [Route53RecoveryControlConfig](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53_recovery_control_config/)\n service.\n- `types-aioboto3[route53-recovery-readiness]` - Type annotations for\n [Route53RecoveryReadiness](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53_recovery_readiness/)\n service.\n- `types-aioboto3[route53domains]` - Type annotations for\n [Route53Domains](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53domains/)\n service.\n- `types-aioboto3[route53profiles]` - Type annotations for\n [Route53Profiles](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53profiles/)\n service.\n- `types-aioboto3[route53resolver]` - Type annotations for\n [Route53Resolver](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_route53resolver/)\n service.\n- `types-aioboto3[rum]` - Type annotations for\n [CloudWatchRUM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_rum/)\n service.\n- `types-aioboto3[s3]` - Type annotations for\n [S3](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_s3/)\n service.\n- `types-aioboto3[s3control]` - Type annotations for\n [S3Control](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_s3control/)\n service.\n- `types-aioboto3[s3outposts]` - Type annotations for\n [S3Outposts](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_s3outposts/)\n service.\n- `types-aioboto3[sagemaker]` - Type annotations for\n [SageMaker](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker/)\n service.\n- `types-aioboto3[sagemaker-a2i-runtime]` - Type annotations for\n [AugmentedAIRuntime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker_a2i_runtime/)\n service.\n- `types-aioboto3[sagemaker-edge]` - Type annotations for\n [SagemakerEdgeManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker_edge/)\n service.\n- `types-aioboto3[sagemaker-featurestore-runtime]` - Type annotations for\n [SageMakerFeatureStoreRuntime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker_featurestore_runtime/)\n service.\n- `types-aioboto3[sagemaker-geospatial]` - Type annotations for\n [SageMakergeospatialcapabilities](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker_geospatial/)\n service.\n- `types-aioboto3[sagemaker-metrics]` - Type annotations for\n [SageMakerMetrics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker_metrics/)\n service.\n- `types-aioboto3[sagemaker-runtime]` - Type annotations for\n [SageMakerRuntime](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sagemaker_runtime/)\n service.\n- `types-aioboto3[savingsplans]` - Type annotations for\n [SavingsPlans](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_savingsplans/)\n service.\n- `types-aioboto3[scheduler]` - Type annotations for\n [EventBridgeScheduler](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_scheduler/)\n service.\n- `types-aioboto3[schemas]` - Type annotations for\n [Schemas](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_schemas/)\n service.\n- `types-aioboto3[sdb]` - Type annotations for\n [SimpleDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sdb/)\n service.\n- `types-aioboto3[secretsmanager]` - Type annotations for\n [SecretsManager](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_secretsmanager/)\n service.\n- `types-aioboto3[securityhub]` - Type annotations for\n [SecurityHub](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_securityhub/)\n service.\n- `types-aioboto3[securitylake]` - Type annotations for\n [SecurityLake](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_securitylake/)\n service.\n- `types-aioboto3[serverlessrepo]` - Type annotations for\n [ServerlessApplicationRepository](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_serverlessrepo/)\n service.\n- `types-aioboto3[service-quotas]` - Type annotations for\n [ServiceQuotas](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_service_quotas/)\n service.\n- `types-aioboto3[servicecatalog]` - Type annotations for\n [ServiceCatalog](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_servicecatalog/)\n service.\n- `types-aioboto3[servicecatalog-appregistry]` - Type annotations for\n [AppRegistry](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_servicecatalog_appregistry/)\n service.\n- `types-aioboto3[servicediscovery]` - Type annotations for\n [ServiceDiscovery](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_servicediscovery/)\n service.\n- `types-aioboto3[ses]` - Type annotations for\n [SES](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ses/)\n service.\n- `types-aioboto3[sesv2]` - Type annotations for\n [SESV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sesv2/)\n service.\n- `types-aioboto3[shield]` - Type annotations for\n [Shield](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_shield/)\n service.\n- `types-aioboto3[signer]` - Type annotations for\n [Signer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_signer/)\n service.\n- `types-aioboto3[simspaceweaver]` - Type annotations for\n [SimSpaceWeaver](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_simspaceweaver/)\n service.\n- `types-aioboto3[sms]` - Type annotations for\n [SMS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sms/)\n service.\n- `types-aioboto3[sms-voice]` - Type annotations for\n [PinpointSMSVoice](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sms_voice/)\n service.\n- `types-aioboto3[snow-device-management]` - Type annotations for\n [SnowDeviceManagement](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_snow_device_management/)\n service.\n- `types-aioboto3[snowball]` - Type annotations for\n [Snowball](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_snowball/)\n service.\n- `types-aioboto3[sns]` - Type annotations for\n [SNS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sns/)\n service.\n- `types-aioboto3[socialmessaging]` - Type annotations for\n [EndUserMessagingSocial](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_socialmessaging/)\n service.\n- `types-aioboto3[sqs]` - Type annotations for\n [SQS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sqs/)\n service.\n- `types-aioboto3[ssm]` - Type annotations for\n [SSM](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ssm/)\n service.\n- `types-aioboto3[ssm-contacts]` - Type annotations for\n [SSMContacts](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ssm_contacts/)\n service.\n- `types-aioboto3[ssm-incidents]` - Type annotations for\n [SSMIncidents](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ssm_incidents/)\n service.\n- `types-aioboto3[ssm-quicksetup]` - Type annotations for\n [SystemsManagerQuickSetup](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ssm_quicksetup/)\n service.\n- `types-aioboto3[ssm-sap]` - Type annotations for\n [SsmSap](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_ssm_sap/)\n service.\n- `types-aioboto3[sso]` - Type annotations for\n [SSO](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sso/)\n service.\n- `types-aioboto3[sso-admin]` - Type annotations for\n [SSOAdmin](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sso_admin/)\n service.\n- `types-aioboto3[sso-oidc]` - Type annotations for\n [SSOOIDC](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sso_oidc/)\n service.\n- `types-aioboto3[stepfunctions]` - Type annotations for\n [SFN](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_stepfunctions/)\n service.\n- `types-aioboto3[storagegateway]` - Type annotations for\n [StorageGateway](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_storagegateway/)\n service.\n- `types-aioboto3[sts]` - Type annotations for\n [STS](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_sts/)\n service.\n- `types-aioboto3[supplychain]` - Type annotations for\n [SupplyChain](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_supplychain/)\n service.\n- `types-aioboto3[support]` - Type annotations for\n [Support](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_support/)\n service.\n- `types-aioboto3[support-app]` - Type annotations for\n [SupportApp](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_support_app/)\n service.\n- `types-aioboto3[swf]` - Type annotations for\n [SWF](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_swf/)\n service.\n- `types-aioboto3[synthetics]` - Type annotations for\n [Synthetics](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_synthetics/)\n service.\n- `types-aioboto3[taxsettings]` - Type annotations for\n [TaxSettings](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_taxsettings/)\n service.\n- `types-aioboto3[textract]` - Type annotations for\n [Textract](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_textract/)\n service.\n- `types-aioboto3[timestream-influxdb]` - Type annotations for\n [TimestreamInfluxDB](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_timestream_influxdb/)\n service.\n- `types-aioboto3[timestream-query]` - Type annotations for\n [TimestreamQuery](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_timestream_query/)\n service.\n- `types-aioboto3[timestream-write]` - Type annotations for\n [TimestreamWrite](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_timestream_write/)\n service.\n- `types-aioboto3[tnb]` - Type annotations for\n [TelcoNetworkBuilder](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_tnb/)\n service.\n- `types-aioboto3[transcribe]` - Type annotations for\n [TranscribeService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_transcribe/)\n service.\n- `types-aioboto3[transfer]` - Type annotations for\n [Transfer](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_transfer/)\n service.\n- `types-aioboto3[translate]` - Type annotations for\n [Translate](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_translate/)\n service.\n- `types-aioboto3[trustedadvisor]` - Type annotations for\n [TrustedAdvisorPublicAPI](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_trustedadvisor/)\n service.\n- `types-aioboto3[verifiedpermissions]` - Type annotations for\n [VerifiedPermissions](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_verifiedpermissions/)\n service.\n- `types-aioboto3[voice-id]` - Type annotations for\n [VoiceID](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_voice_id/)\n service.\n- `types-aioboto3[vpc-lattice]` - Type annotations for\n [VPCLattice](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_vpc_lattice/)\n service.\n- `types-aioboto3[waf]` - Type annotations for\n [WAF](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_waf/)\n service.\n- `types-aioboto3[waf-regional]` - Type annotations for\n [WAFRegional](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_waf_regional/)\n service.\n- `types-aioboto3[wafv2]` - Type annotations for\n [WAFV2](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_wafv2/)\n service.\n- `types-aioboto3[wellarchitected]` - Type annotations for\n [WellArchitected](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_wellarchitected/)\n service.\n- `types-aioboto3[wisdom]` - Type annotations for\n [ConnectWisdomService](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_wisdom/)\n service.\n- `types-aioboto3[workdocs]` - Type annotations for\n [WorkDocs](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_workdocs/)\n service.\n- `types-aioboto3[workmail]` - Type annotations for\n [WorkMail](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_workmail/)\n service.\n- `types-aioboto3[workmailmessageflow]` - Type annotations for\n [WorkMailMessageFlow](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_workmailmessageflow/)\n service.\n- `types-aioboto3[workspaces]` - Type annotations for\n [WorkSpaces](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_workspaces/)\n service.\n- `types-aioboto3[workspaces-thin-client]` - Type annotations for\n [WorkSpacesThinClient](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_workspaces_thin_client/)\n service.\n- `types-aioboto3[workspaces-web]` - Type annotations for\n [WorkSpacesWeb](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_workspaces_web/)\n service.\n- `types-aioboto3[xray]` - Type annotations for\n [XRay](https://youtype.github.io/types_aioboto3_docs/types_aiobotocore_xray/)\n service.\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Type annotations for aioboto3 13.2.0 generated with mypy-boto3-builder 8.2.0",
"version": "13.2.0.post1",
"project_urls": {
"Documentation": "https://youtype.github.io/types_aioboto3_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": [
"aioboto3",
"type-annotations",
"aioboto3-stubs",
"mypy",
"typeshed",
"autocomplete"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "554ea5e5b0b37d9b325b0357cdb032bc8e7af4a0ead0c8d7147f68641d268187",
"md5": "909c573e90a20ebaad268df4e24451bf",
"sha256": "138c8addfedd7b5e65918cb5e5293005eb20f32de800c01a84bf388d154ef33b"
},
"downloads": -1,
"filename": "types_aioboto3-13.2.0.post1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "909c573e90a20ebaad268df4e24451bf",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 38002,
"upload_time": "2024-11-02T10:16:23",
"upload_time_iso_8601": "2024-11-02T10:16:23.109051Z",
"url": "https://files.pythonhosted.org/packages/55/4e/a5e5b0b37d9b325b0357cdb032bc8e7af4a0ead0c8d7147f68641d268187/types_aioboto3-13.2.0.post1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7abebf10261b9456b0e7138920cf00efcaeafc980c719b5b4227528f0edbcf68",
"md5": "e6dd0a499e6394dfb5621447cb87543e",
"sha256": "65dbbbaeb395f872db36a70812c02711fd68842a802b70792779250371747d1c"
},
"downloads": -1,
"filename": "types_aioboto3-13.2.0.post1.tar.gz",
"has_sig": false,
"md5_digest": "e6dd0a499e6394dfb5621447cb87543e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 71451,
"upload_time": "2024-11-02T10:16:27",
"upload_time_iso_8601": "2024-11-02T10:16:27.043417Z",
"url": "https://files.pythonhosted.org/packages/7a/be/bf10261b9456b0e7138920cf00efcaeafc980c719b5b4227528f0edbcf68/types_aioboto3-13.2.0.post1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-02 10:16:27",
"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": "types-aioboto3"
}