Skip to content

Examples

Index > IoTFleetHub > Examples

Auto-generated documentation for IoTFleetHub type annotations stubs module types-aiobotocore-iotfleethub.

Client

Implicit type annotations

Can be used with types-aioboto3[iotfleethub] package installed.

Write your IoTFleetHub code as usual, type checking and code completion should work out of the box.

Client usage example
from aioboto3.session import Session


session = Session()

async with session.client("iotfleethub") as client:  # (1)
    result = await client.create_application()  # (2)
  1. client: IoTFleetHubClient
  2. result: CreateApplicationResponseTypeDef
Paginator usage example
from aioboto3.session import Session


session = Session()

async with session.client("iotfleethub") as client:  # (1)
    paginator = client.get_paginator("list_applications")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: IoTFleetHubClient
  2. paginator: ListApplicationsPaginator
  3. item: ListApplicationsResponseTypeDef

Explicit type annotations

With types-aioboto3-lite[iotfleethub] or a standalone types_aiobotocore_iotfleethub package, you have to explicitly specify client: IoTFleetHubClient type annotation.

All other type annotations are optional, as types should be discovered automatically. However, these type annotations can be helpful in your functions and methods.

Client usage example
from aioboto3.session import Session

from types_aiobotocore_iotfleethub.client import IoTFleetHubClient
from types_aiobotocore_iotfleethub.type_defs import CreateApplicationResponseTypeDef
from types_aiobotocore_iotfleethub.type_defs import CreateApplicationRequestRequestTypeDef


session = Session()

client: IoTFleetHubClient
async with session.client("iotfleethub") as client:  # (1)
    kwargs: CreateApplicationRequestRequestTypeDef = {...}  # (2)
    result: CreateApplicationResponseTypeDef = await client.create_application(**kwargs)  # (3)
  1. client: IoTFleetHubClient
  2. kwargs: CreateApplicationRequestRequestTypeDef
  3. result: CreateApplicationResponseTypeDef
Paginator usage example
from aioboto3.session import Session

from types_aiobotocore_iotfleethub.client import IoTFleetHubClient
from types_aiobotocore_iotfleethub.paginator import ListApplicationsPaginator
from types_aiobotocore_iotfleethub.type_defs import ListApplicationsResponseTypeDef


session = Session()

client: IoTFleetHubClient
async with session.client("iotfleethub") as client:  # (1)
    paginator: ListApplicationsPaginator = client.get_paginator("list_applications")  # (2)
    async for item in paginator.paginate(...):
        item: ListApplicationsResponseTypeDef
        print(item)  # (3)
  1. client: IoTFleetHubClient
  2. paginator: ListApplicationsPaginator
  3. item: ListApplicationsResponseTypeDef