Skip to content

SnowDeviceManagement module

Index > SnowDeviceManagement

Auto-generated documentation for SnowDeviceManagement type annotations stubs module types-aiobotocore-snow-device-management.

How to install

From PyPI with pip

Install types-aioboto3 for SnowDeviceManagement service.

# install with aioboto3 type annotations
python -m pip install 'types-aioboto3[snow-device-management]'


# 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[snow-device-management]'


# standalone installation
python -m pip install types-aiobotocore-snow-device-management

How to uninstall

python -m pip uninstall -y types-aiobotocore-snow-device-management

Usage

Code samples can be found in Examples.

SnowDeviceManagementClient

Type annotations and code completion for session.client("snow-device-management") as SnowDeviceManagementClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_snow_device_management.client import SnowDeviceManagementClient


session = Session()
async with session.client("snow-device-management") as client:
    client: SnowDeviceManagementClient

Paginators

Type annotations and code completion for paginators from session.client("snow-device-management").get_paginator("...").

Usage example
from types_aiobotocore_snow_device_management.paginator import ListDeviceResourcesPaginator

def get_list_device_resources_paginator() -> ListDeviceResourcesPaginator:
    return client.get_paginator("list_device_resources"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_snow_device_management.literals import AttachmentStatusType

def get_value() -> AttachmentStatusType:
    return "ATTACHED"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_snow_device_management.type_defs import CancelTaskInputRequestTypeDef

def get_value() -> CancelTaskInputRequestTypeDef:
    return {
        "taskId": ...,
    }