Skip to content

IoT1ClickProjects module

Index > IoT1ClickProjects

Auto-generated documentation for IoT1ClickProjects type annotations stubs module types-aiobotocore-iot1click-projects.

How to install

From PyPI with pip

Install types-aioboto3 for IoT1ClickProjects service.

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


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


# standalone installation
python -m pip install types-aiobotocore-iot1click-projects

How to uninstall

python -m pip uninstall -y types-aiobotocore-iot1click-projects

Usage

Code samples can be found in Examples.

IoT1ClickProjectsClient

Type annotations and code completion for session.client("iot1click-projects") as IoT1ClickProjectsClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_iot1click_projects.client import IoT1ClickProjectsClient


session = Session()
async with session.client("iot1click-projects") as client:
    client: IoT1ClickProjectsClient

Paginators

Type annotations and code completion for paginators from session.client("iot1click-projects").get_paginator("...").

Usage example
from types_aiobotocore_iot1click_projects.paginator import ListPlacementsPaginator

def get_list_placements_paginator() -> ListPlacementsPaginator:
    return client.get_paginator("list_placements"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_iot1click_projects.literals import ListPlacementsPaginatorName

def get_value() -> ListPlacementsPaginatorName:
    return "list_placements"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_iot1click_projects.type_defs import AssociateDeviceWithPlacementRequestRequestTypeDef

def get_value() -> AssociateDeviceWithPlacementRequestRequestTypeDef:
    return {
        "projectName": ...,
        "placementName": ...,
        "deviceId": ...,
        "deviceTemplateName": ...,
    }