Registry /
type-stubs / types-aiobotocore-bedrock-agentcore
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.6MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 1.7s · import 0.000s · 19MB
17MB installed
● package 17MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
Client
✓ from types_aiobotocore_bedrock_agentcore import Client
✗ from types_aiobotocore_bedrock_agentcore import client
type_defs
✓ from types_aiobotocore_bedrock_agentcore.type_defs import ...
✗ from types_aiobotocore_bedrock_agentcore import type_defs
ServiceResource
✓ from types_aiobotocore_bedrock_agentcore import ServiceResource
Create a Bedrock Agent Core client and verify the type annotation is applied.
import asyncio
from aiobotocore.session import get_session
from types_aiobotocore_bedrock_agentcore import BedrockAgentCoreClient
async def main():
session = get_session()
async with session.create_client('bedrock-agent-core', region_name='us-east-1') as client:
# client is of type BedrockAgentCoreClient
print(type(client).__name__)
asyncio.run(main())
Upgrade
Version history
3.7.0latest on PyPI · released May 10, 2026
Audit
Dependencies
aiobotocorerequiredRuntime dependency for the Bedrock Agent Core client; types are generated for aiobotocore.
typing-extensionsoptionalRequired for Python <3.10 to support newer typing constructs used in stubs.