Skip to content

IoTAnalytics module#

Index > IoTAnalytics

Auto-generated documentation for IoTAnalytics type annotations stubs module types-aiobotocore-iotanalytics.

How to install#

From PyPI with pip#

Install types-aiobotocore for IoTAnalytics service.

# install with aiobotocore type annotations
python -m pip install 'types-aiobotocore[iotanalytics]'


# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'types-aiobotocore-lite[iotanalytics]'


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

How to uninstall#

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

Usage#

Code samples can be found in Examples.

IoTAnalyticsClient#

Type annotations and code completion for session.create_client("iotanalytics") as IoTAnalyticsClient boto3 documentation

# IoTAnalyticsClient usage example

from aiobotocore.session import get_session

from types_aiobotocore_iotanalytics.client import IoTAnalyticsClient


session = get_session()
async with session.create_client("iotanalytics") as client:
    client: IoTAnalyticsClient

Paginators#

Type annotations and code completion for paginators from session.create_client("iotanalytics").get_paginator("...").

# ListChannelsPaginator usage example

from types_aiobotocore_iotanalytics.paginator import ListChannelsPaginator

def get_list_channels_paginator() -> ListChannelsPaginator:
    return client.get_paginator("list_channels"))

Literals#

Type annotations for literals used in methods and schema.

# ChannelStatusType usage example

from types_aiobotocore_iotanalytics.literals import ChannelStatusType

def get_value() -> ChannelStatusType:
    return "ACTIVE"

Type definitions#

Type annotations for type definitions used in methods and schema.