Skip to content

ApiGatewayManagementApi module

Index > ApiGatewayManagementApi

Auto-generated documentation for ApiGatewayManagementApi type annotations stubs module types-aiobotocore-apigatewaymanagementapi.

How to install

From PyPI with pip

Install types-aioboto3 for ApiGatewayManagementApi service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

ApiGatewayManagementApiClient

Type annotations and code completion for session.client("apigatewaymanagementapi") as ApiGatewayManagementApiClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_apigatewaymanagementapi.client import ApiGatewayManagementApiClient


session = Session()
async with session.client("apigatewaymanagementapi") as client:
    client: ApiGatewayManagementApiClient

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_apigatewaymanagementapi.literals import ApiGatewayManagementApiServiceName

def get_value() -> ApiGatewayManagementApiServiceName:
    return "apigatewaymanagementapi"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_apigatewaymanagementapi.type_defs import DeleteConnectionRequestRequestTypeDef

def get_value() -> DeleteConnectionRequestRequestTypeDef:
    return {
        "ConnectionId": ...,
    }