Skip to content

ManagedBlockchain module

Index > ManagedBlockchain

Auto-generated documentation for ManagedBlockchain type annotations stubs module types-aiobotocore-managedblockchain.

How to install

From PyPI with pip

Install types-aioboto3 for ManagedBlockchain service.

# install with aioboto3 type annotations
python -m pip install 'types-aioboto3[managedblockchain]'


# 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[managedblockchain]'


# standalone installation
python -m pip install types-aiobotocore-managedblockchain

How to uninstall

python -m pip uninstall -y types-aiobotocore-managedblockchain

Usage

Code samples can be found in Examples.

ManagedBlockchainClient

Type annotations and code completion for session.client("managedblockchain") as ManagedBlockchainClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_managedblockchain.client import ManagedBlockchainClient


session = Session()
async with session.client("managedblockchain") as client:
    client: ManagedBlockchainClient

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_managedblockchain.literals import EditionType

def get_value() -> EditionType:
    return "STANDARD"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_managedblockchain.type_defs import ApprovalThresholdPolicyTypeDef

def get_value() -> ApprovalThresholdPolicyTypeDef:
    return {
        "ThresholdPercentage": ...,
    }