Skip to content

RecycleBin module

Index > RecycleBin

Auto-generated documentation for RecycleBin type annotations stubs module types-aiobotocore-rbin.

How to install

From PyPI with pip

Install types-aioboto3 for RecycleBin service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

RecycleBinClient

Type annotations and code completion for session.client("rbin") as RecycleBinClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_rbin.client import RecycleBinClient


session = Session()
async with session.client("rbin") as client:
    client: RecycleBinClient

Paginators

Type annotations and code completion for paginators from session.client("rbin").get_paginator("...").

Usage example
from types_aiobotocore_rbin.paginator import ListRulesPaginator

def get_list_rules_paginator() -> ListRulesPaginator:
    return client.get_paginator("list_rules"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_rbin.literals import ListRulesPaginatorName

def get_value() -> ListRulesPaginatorName:
    return "list_rules"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_rbin.type_defs import ResourceTagTypeDef

def get_value() -> ResourceTagTypeDef:
    return {
        "ResourceTagKey": ...,
    }