Skip to content

AppConfig module

Index > AppConfig

Auto-generated documentation for AppConfig type annotations stubs module types-aiobotocore-appconfig.

How to install

From PyPI with pip

Install types-aioboto3 for AppConfig service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

AppConfigClient

Type annotations and code completion for session.client("appconfig") as AppConfigClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_appconfig.client import AppConfigClient


session = Session()
async with session.client("appconfig") as client:
    client: AppConfigClient

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_appconfig.literals import ActionPointType

def get_value() -> ActionPointType:
    return "ON_DEPLOYMENT_BAKING"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_appconfig.type_defs import ActionInvocationTypeDef

def get_value() -> ActionInvocationTypeDef:
    return {
        "ExtensionIdentifier": ...,
    }