Skip to content

IVS module

Index > IVS

Auto-generated documentation for IVS type annotations stubs module types-aiobotocore-ivs.

How to install

From PyPI with pip

Install types-aioboto3 for IVS service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

IVSClient

Type annotations and code completion for session.client("ivs") as IVSClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_ivs.client import IVSClient


session = Session()
async with session.client("ivs") as client:
    client: IVSClient

Paginators

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

Usage example
from types_aiobotocore_ivs.paginator import ListChannelsPaginator

def get_list_channels_paginator() -> ListChannelsPaginator:
    return client.get_paginator("list_channels"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_ivs.literals import ChannelLatencyModeType

def get_value() -> ChannelLatencyModeType:
    return "LOW"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_ivs.type_defs import AudioConfigurationTypeDef

def get_value() -> AudioConfigurationTypeDef:
    return {
        "channels": ...,
    }