Skip to content

BackupGateway module

Index > BackupGateway

Auto-generated documentation for BackupGateway type annotations stubs module types-aiobotocore-backup-gateway.

How to install

From PyPI with pip

Install types-aioboto3 for BackupGateway service.

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


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


# standalone installation
python -m pip install types-aiobotocore-backup-gateway

How to uninstall

python -m pip uninstall -y types-aiobotocore-backup-gateway

Usage

Code samples can be found in Examples.

BackupGatewayClient

Type annotations and code completion for session.client("backup-gateway") as BackupGatewayClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_backup_gateway.client import BackupGatewayClient


session = Session()
async with session.client("backup-gateway") as client:
    client: BackupGatewayClient

Paginators

Type annotations and code completion for paginators from session.client("backup-gateway").get_paginator("...").

Usage example
from types_aiobotocore_backup_gateway.paginator import ListGatewaysPaginator

def get_list_gateways_paginator() -> ListGatewaysPaginator:
    return client.get_paginator("list_gateways"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_backup_gateway.literals import GatewayTypeType

def get_value() -> GatewayTypeType:
    return "BACKUP_VM"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_backup_gateway.type_defs import AssociateGatewayToServerInputRequestTypeDef

def get_value() -> AssociateGatewayToServerInputRequestTypeDef:
    return {
        "GatewayArn": ...,
        "ServerArn": ...,
    }