Skip to content

VoiceID module

Index > VoiceID

Auto-generated documentation for VoiceID type annotations stubs module types-aiobotocore-voice-id.

How to install

From PyPI with pip

Install types-aioboto3 for VoiceID service.

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


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


# standalone installation
python -m pip install types-aiobotocore-voice-id

How to uninstall

python -m pip uninstall -y types-aiobotocore-voice-id

Usage

Code samples can be found in Examples.

VoiceIDClient

Type annotations and code completion for session.client("voice-id") as VoiceIDClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_voice_id.client import VoiceIDClient


session = Session()
async with session.client("voice-id") as client:
    client: VoiceIDClient

Paginators

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

Usage example
from types_aiobotocore_voice_id.paginator import ListDomainsPaginator

def get_list_domains_paginator() -> ListDomainsPaginator:
    return client.get_paginator("list_domains"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_voice_id.literals import AuthenticationDecisionType

def get_value() -> AuthenticationDecisionType:
    return "ACCEPT"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_voice_id.type_defs import AuthenticationConfigurationTypeDef

def get_value() -> AuthenticationConfigurationTypeDef:
    return {
        "AcceptanceThreshold": ...,
    }