Skip to content

Snowball module

Index > Snowball

Auto-generated documentation for Snowball type annotations stubs module types-aiobotocore-snowball.

How to install

From PyPI with pip

Install types-aioboto3 for Snowball service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

SnowballClient

Type annotations and code completion for session.client("snowball") as SnowballClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_snowball.client import SnowballClient


session = Session()
async with session.client("snowball") as client:
    client: SnowballClient

Paginators

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

Usage example
from types_aiobotocore_snowball.paginator import DescribeAddressesPaginator

def get_describe_addresses_paginator() -> DescribeAddressesPaginator:
    return client.get_paginator("describe_addresses"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_snowball.literals import ClusterStateType

def get_value() -> ClusterStateType:
    return "AwaitingQuorum"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_snowball.type_defs import AddressTypeDef

def get_value() -> AddressTypeDef:
    return {
        "AddressId": ...,
    }