Skip to content

MediaPackageVod module

Index > MediaPackageVod

Auto-generated documentation for MediaPackageVod type annotations stubs module mypy-boto3-mediapackage-vod.

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

From PyPI with pip

Install boto3-stubs for MediaPackageVod service.

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


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


# standalone installation
python -m pip install mypy-boto3-mediapackage-vod

How to uninstall

python -m pip uninstall -y mypy-boto3-mediapackage-vod

Usage

Code samples can be found in Examples.

MediaPackageVodClient

Type annotations and code completion for boto3.client("mediapackage-vod") as MediaPackageVodClient boto3 documentation

Usage example
from boto3.session import Session

from mypy_boto3_mediapackage_vod.client import MediaPackageVodClient

def get_client() -> MediaPackageVodClient:
    return Session().client("mediapackage-vod")

Paginators

Type annotations and code completion for paginators from boto3.client("mediapackage-vod").get_paginator("...").

Usage example
from boto3.session import Session

from mypy_boto3_mediapackage_vod.paginator import ListAssetsPaginator

def get_list_assets_paginator() -> ListAssetsPaginator:
    return Session().client("mediapackage-vod").get_paginator("list_assets"))

Literals

Type annotations for literals used in methods and schemas.

Usage example
from mypy_boto3_mediapackage_vod.literals import AdMarkersType

def get_value() -> AdMarkersType:
    return "NONE"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from mypy_boto3_mediapackage_vod.type_defs import AssetShallowTypeDef

def get_value() -> AssetShallowTypeDef:
    return {
        "Arn": ...,
    }