Registry /
type-stubs / types-aiobotocore-verifiedpermissions
Install & Compatibility
Where this runs
tested against v3.7.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 18.4MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 1.7s · import 0.000s · 19MB
16MB installed
● package 16MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
VerifiedPermissionsClient
✓ from types_aiobotocore_verifiedpermissions import VerifiedPermissionsClient
✗ from aiobotocore.client import AioBaseClient
Quickstart: create an async client with type annotations.
import os
from aiobotocore.session import AioSession
session = AioSession()
async def main():
async with session.create_client('verifiedpermissions', region_name='us-east-1',
aws_access_key_id=os.environ.get('AWS_ACCESS_KEY_ID', ''),
aws_secret_access_key=os.environ.get('AWS_SECRET_ACCESS_KEY', '')) as client:
# The client is fully typed
result = await client.list_policy_stores()
print(result)
import asyncio
asyncio.run(main())
Debug
Known issues
breakingIn version 8.9.0 of mypy-boto3-builder, TypeDef names were shortened (e.g., CreateDistributionRequestRequestTypeDef -> CreateDistributionRequestTypeDef). If you rely on specific TypeDef names, they may have changed.fixCheck the updated TypeDef names in the type_defs module; re-import using the new names.
affects: >=3.5.0 built with builder >=8.9.0
gotchaThe top-level package exports do not include the client class. Attempting to import VerifiedPermissionsClient from types_aiobotocore_verifiedpermissions will fail.fixUse from aiobotocore.client import AioBaseClient, or rely on session.create_client returning a properly typed client.
affects: all
deprecatedSupport for Python 3.8 was removed in mypy-boto3-builder 8.12.0. This package requires Python >=3.9.fixUpgrade to Python 3.9 or later.
affects: >=3.5.0
gotchaType hints only exist during static analysis; at runtime they do not enforce types. Mismatched types will not raise errors until the actual API call.fixUse a type checker like mypy or pyright to catch type errors before runtime.
affects: all
Upgrade
Version history
3.7.0latest on PyPI · released May 10, 2026
Audit
Dependencies
aiobotocorerequiredruntime dependency for actual AWS calls
typing-extensionsoptionalneeded for PEP 604 type hints on Python <3.10