Skip to content

Support module

Index > Support

Auto-generated documentation for Support type annotations stubs module types-aiobotocore-support.

How to install

From PyPI with pip

Install types-aioboto3 for Support service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

SupportClient

Type annotations and code completion for session.client("support") as SupportClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_support.client import SupportClient


session = Session()
async with session.client("support") as client:
    client: SupportClient

Paginators

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

Usage example
from types_aiobotocore_support.paginator import DescribeCasesPaginator

def get_describe_cases_paginator() -> DescribeCasesPaginator:
    return client.get_paginator("describe_cases"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_support.literals import DescribeCasesPaginatorName

def get_value() -> DescribeCasesPaginatorName:
    return "describe_cases"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_support.type_defs import AttachmentTypeDef

def get_value() -> AttachmentTypeDef:
    return {
        "fileName": ...,
    }