Skip to content

ApiGatewayManagementApiClient

Index > ApiGatewayManagementApi > ApiGatewayManagementApiClient

Auto-generated documentation for ApiGatewayManagementApi type annotations stubs module mypy-boto3-apigatewaymanagementapi.

ApiGatewayManagementApiClient

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

Usage example
from boto3.session import Session
from mypy_boto3_apigatewaymanagementapi.client import ApiGatewayManagementApiClient

def get_apigatewaymanagementapi_client() -> ApiGatewayManagementApiClient:
    return Session().client("apigatewaymanagementapi")

Exceptions

boto3 client exceptions are generated in runtime. This class provides code completion for boto3.client("apigatewaymanagementapi").exceptions structure.

Usage example
client = boto3.client("apigatewaymanagementapi")

try:
    do_something(client)
except (
    client.ClientError,
    client.ForbiddenException,
    client.GoneException,
    client.LimitExceededException,
    client.PayloadTooLargeException,
) as e:
    print(e)
Type checking example
from mypy_boto3_apigatewaymanagementapi.client import Exceptions

def handle_error(exc: Exceptions.ClientError) -> None:
    ...

Methods

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for boto3.client("apigatewaymanagementapi").can_paginate method. boto3 documentation

Method definition
def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close

Closes underlying endpoint connections.

Type annotations and code completion for boto3.client("apigatewaymanagementapi").close method. boto3 documentation

Method definition
def close(
    self,
) -> None:
    ...

delete_connection

Delete the connection with the provided id.

Type annotations and code completion for boto3.client("apigatewaymanagementapi").delete_connection method. boto3 documentation

Method definition
def delete_connection(
    self,
    *,
    ConnectionId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteConnectionRequestRequestTypeDef = {  # (1)
    "ConnectionId": ...,
}

parent.delete_connection(**kwargs)
  1. See DeleteConnectionRequestRequestTypeDef

generate_presigned_url

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for boto3.client("apigatewaymanagementapi").generate_presigned_url method. boto3 documentation

Method definition
def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_connection

Get information about the connection with the provided id.

Type annotations and code completion for boto3.client("apigatewaymanagementapi").get_connection method. boto3 documentation

Method definition
def get_connection(
    self,
    *,
    ConnectionId: str,
) -> GetConnectionResponseTypeDef:  # (1)
    ...
  1. See GetConnectionResponseTypeDef
Usage example with kwargs
kwargs: GetConnectionRequestRequestTypeDef = {  # (1)
    "ConnectionId": ...,
}

parent.get_connection(**kwargs)
  1. See GetConnectionRequestRequestTypeDef

post_to_connection

Sends the provided data to the specified connection.

Type annotations and code completion for boto3.client("apigatewaymanagementapi").post_to_connection method. boto3 documentation

Method definition
def post_to_connection(
    self,
    *,
    Data: Union[str, bytes, IO[Any], StreamingBody],
    ConnectionId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: PostToConnectionRequestRequestTypeDef = {  # (1)
    "Data": ...,
    "ConnectionId": ...,
}

parent.post_to_connection(**kwargs)
  1. See PostToConnectionRequestRequestTypeDef