Skip to content

Honeycode module

Index > Honeycode

Auto-generated documentation for Honeycode type annotations stubs module types-aiobotocore-honeycode.

How to install

From PyPI with pip

Install types-aioboto3 for Honeycode service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

HoneycodeClient

Type annotations and code completion for session.client("honeycode") as HoneycodeClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_honeycode.client import HoneycodeClient


session = Session()
async with session.client("honeycode") as client:
    client: HoneycodeClient

Paginators

Type annotations and code completion for paginators from session.client("honeycode").get_paginator("...").

Usage example
from types_aiobotocore_honeycode.paginator import ListTableColumnsPaginator

def get_list_table_columns_paginator() -> ListTableColumnsPaginator:
    return client.get_paginator("list_table_columns"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_honeycode.literals import ErrorCodeType

def get_value() -> ErrorCodeType:
    return "ACCESS_DENIED"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_honeycode.type_defs import FailedBatchItemTypeDef

def get_value() -> FailedBatchItemTypeDef:
    return {
        "id": ...,
        "errorMessage": ...,
    }