Skip to content

AlexaForBusiness module

Index > AlexaForBusiness

Auto-generated documentation for AlexaForBusiness type annotations stubs module types-aiobotocore-alexaforbusiness.

How to install

From PyPI with pip

Install types-aioboto3 for AlexaForBusiness service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

AlexaForBusinessClient

Type annotations and code completion for session.client("alexaforbusiness") as AlexaForBusinessClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_alexaforbusiness.client import AlexaForBusinessClient


session = Session()
async with session.client("alexaforbusiness") as client:
    client: AlexaForBusinessClient

Paginators

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

Usage example
from types_aiobotocore_alexaforbusiness.paginator import ListBusinessReportSchedulesPaginator

def get_list_business_report_schedules_paginator() -> ListBusinessReportSchedulesPaginator:
    return client.get_paginator("list_business_report_schedules"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_alexaforbusiness.literals import BusinessReportFailureCodeType

def get_value() -> BusinessReportFailureCodeType:
    return "ACCESS_DENIED"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_alexaforbusiness.type_defs import AddressBookDataTypeDef

def get_value() -> AddressBookDataTypeDef:
    return {
        "AddressBookArn": ...,
    }