Skip to content

ChimeSDKVoice module

Index > ChimeSDKVoice

Auto-generated documentation for ChimeSDKVoice type annotations stubs module mypy-boto3-chime-sdk-voice.

How to install

VSCode extension

Add AWS Boto3 extension to your VSCode and run AWS boto3: Quick Start command.

Click Modify and select boto3 common and ChimeSDKVoice.

From PyPI with pip

Install boto3-stubs for ChimeSDKVoice service.

# install with boto3 type annotations
python -m pip install 'boto3-stubs[chime-sdk-voice]'


# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'boto3-stubs-lite[chime-sdk-voice]'


# standalone installation
python -m pip install mypy-boto3-chime-sdk-voice

How to uninstall

python -m pip uninstall -y mypy-boto3-chime-sdk-voice

Usage

Code samples can be found in Examples.

ChimeSDKVoiceClient

Type annotations and code completion for boto3.client("chime-sdk-voice") as ChimeSDKVoiceClient boto3 documentation

Usage example
from boto3.session import Session

from mypy_boto3_chime_sdk_voice.client import ChimeSDKVoiceClient

def get_client() -> ChimeSDKVoiceClient:
    return Session().client("chime-sdk-voice")

Paginators

Type annotations and code completion for paginators from boto3.client("chime-sdk-voice").get_paginator("...").

Usage example
from boto3.session import Session

from mypy_boto3_chime_sdk_voice.paginator import ListSipMediaApplicationsPaginator

def get_list_sip_media_applications_paginator() -> ListSipMediaApplicationsPaginator:
    return Session().client("chime-sdk-voice").get_paginator("list_sip_media_applications"))

Literals

Type annotations for literals used in methods and schemas.

Usage example
from mypy_boto3_chime_sdk_voice.literals import AlexaSkillStatusType

def get_value() -> AlexaSkillStatusType:
    return "ACTIVE"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from mypy_boto3_chime_sdk_voice.type_defs import AddressTypeDef

def get_value() -> AddressTypeDef:
    return {
        "streetName": ...,
    }