Skip to content

SupportApp module

Index > SupportApp

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

How to install

From PyPI with pip

Install types-aioboto3 for SupportApp service.

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


# 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-app]'


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

How to uninstall

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

Usage

Code samples can be found in Examples.

SupportAppClient

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

Usage example
from aioboto3.session import Session

from types_aiobotocore_support_app.client import SupportAppClient


session = Session()
async with session.client("support-app") as client:
    client: SupportAppClient

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_support_app.literals import NotificationSeverityLevelType

def get_value() -> NotificationSeverityLevelType:
    return "all"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_support_app.type_defs import CreateSlackChannelConfigurationRequestRequestTypeDef

def get_value() -> CreateSlackChannelConfigurationRequestRequestTypeDef:
    return {
        "channelId": ...,
        "channelRoleArn": ...,
        "notifyOnCaseSeverity": ...,
        "teamId": ...,
    }