Skip to content

Examples

Index > ApiGatewayManagementApi > Examples

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

Client

Implicit type annotations

Can be used with types-aioboto3[apigatewaymanagementapi] package installed.

Write your ApiGatewayManagementApi code as usual, type checking and code completion should work out of the box.

Client usage example
from aioboto3.session import Session


session = Session()

async with session.client("apigatewaymanagementapi") as client:  # (1)
    result = await client.delete_connection()  # (2)
  1. client: ApiGatewayManagementApiClient
  2. result: EmptyResponseMetadataTypeDef

Explicit type annotations

With types-aioboto3-lite[apigatewaymanagementapi] or a standalone types_aiobotocore_apigatewaymanagementapi package, you have to explicitly specify client: ApiGatewayManagementApiClient type annotation.

All other type annotations are optional, as types should be discovered automatically. However, these type annotations can be helpful in your functions and methods.

Client usage example
from aioboto3.session import Session

from types_aiobotocore_apigatewaymanagementapi.client import ApiGatewayManagementApiClient
from types_aiobotocore_apigatewaymanagementapi.type_defs import EmptyResponseMetadataTypeDef
from types_aiobotocore_apigatewaymanagementapi.type_defs import DeleteConnectionRequestRequestTypeDef


session = Session()

client: ApiGatewayManagementApiClient
async with session.client("apigatewaymanagementapi") as client:  # (1)
    kwargs: DeleteConnectionRequestRequestTypeDef = {...}  # (2)
    result: EmptyResponseMetadataTypeDef = await client.delete_connection(**kwargs)  # (3)
  1. client: ApiGatewayManagementApiClient
  2. kwargs: DeleteConnectionRequestRequestTypeDef
  3. result: EmptyResponseMetadataTypeDef