Skip to content

ElasticTranscoder module

Index > ElasticTranscoder

Auto-generated documentation for ElasticTranscoder type annotations stubs module types-aiobotocore-elastictranscoder.

How to install

From PyPI with pip

Install types-aioboto3 for ElasticTranscoder service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

ElasticTranscoderClient

Type annotations and code completion for session.client("elastictranscoder") as ElasticTranscoderClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_elastictranscoder.client import ElasticTranscoderClient


session = Session()
async with session.client("elastictranscoder") as client:
    client: ElasticTranscoderClient

Paginators

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

Usage example
from types_aiobotocore_elastictranscoder.paginator import ListJobsByPipelinePaginator

def get_list_jobs_by_pipeline_paginator() -> ListJobsByPipelinePaginator:
    return client.get_paginator("list_jobs_by_pipeline"))

Waiters

Type annotations and code completion for waiters from session.client("elastictranscoder").get_waiter("...").

Usage example
from types_aiobotocore_elastictranscoder.waiter import JobCompleteWaiter

def get_job_complete_waiter() -> JobCompleteWaiter:
    return Session().client("elastictranscoder").get_waiter("job_complete")

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_elastictranscoder.literals import JobCompleteWaiterName

def get_value() -> JobCompleteWaiterName:
    return "job_complete"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_elastictranscoder.type_defs import EncryptionTypeDef

def get_value() -> EncryptionTypeDef:
    return {
        "Mode": ...,
    }