Skip to content

MediaConnect module

Index > MediaConnect

Auto-generated documentation for MediaConnect type annotations stubs module mypy-boto3-mediaconnect.

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 MediaConnect.

From PyPI with pip

Install boto3-stubs for MediaConnect service.

# install with boto3 type annotations
python -m pip install 'boto3-stubs[mediaconnect]'


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


# standalone installation
python -m pip install mypy-boto3-mediaconnect

How to uninstall

python -m pip uninstall -y mypy-boto3-mediaconnect

Usage

Code samples can be found in Examples.

MediaConnectClient

Type annotations and code completion for boto3.client("mediaconnect") as MediaConnectClient boto3 documentation

Usage example
from boto3.session import Session

from mypy_boto3_mediaconnect.client import MediaConnectClient

def get_client() -> MediaConnectClient:
    return Session().client("mediaconnect")

Paginators

Type annotations and code completion for paginators from boto3.client("mediaconnect").get_paginator("...").

Usage example
from boto3.session import Session

from mypy_boto3_mediaconnect.paginator import ListEntitlementsPaginator

def get_list_entitlements_paginator() -> ListEntitlementsPaginator:
    return Session().client("mediaconnect").get_paginator("list_entitlements"))

Waiters

Type annotations and code completion for waiters from boto3.client("mediaconnect").get_waiter("...").

Usage example
from boto3.session import Session

from mypy_boto3_mediaconnect.waiter import FlowActiveWaiter

def get_flow_active_waiter() -> FlowActiveWaiter:
    return Session().client("mediaconnect").get_waiter("flow_active")

Literals

Type annotations for literals used in methods and schemas.

Usage example
from mypy_boto3_mediaconnect.literals import AlgorithmType

def get_value() -> AlgorithmType:
    return "aes128"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from mypy_boto3_mediaconnect.type_defs import ResponseMetadataTypeDef

def get_value() -> ResponseMetadataTypeDef:
    return {
        "RequestId": ...,
        "HostId": ...,
        "HTTPStatusCode": ...,
        "HTTPHeaders": ...,
        "RetryAttempts": ...,
    }