Skip to content

MediaStore module

Index > MediaStore

Auto-generated documentation for MediaStore type annotations stubs module mypy-boto3-mediastore.

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

From PyPI with pip

Install boto3-stubs for MediaStore service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

MediaStoreClient

Type annotations and code completion for boto3.client("mediastore") as MediaStoreClient boto3 documentation

Usage example
from boto3.session import Session

from mypy_boto3_mediastore.client import MediaStoreClient

def get_client() -> MediaStoreClient:
    return Session().client("mediastore")

Paginators

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

Usage example
from boto3.session import Session

from mypy_boto3_mediastore.paginator import ListContainersPaginator

def get_list_containers_paginator() -> ListContainersPaginator:
    return Session().client("mediastore").get_paginator("list_containers"))

Literals

Type annotations for literals used in methods and schemas.

Usage example
from mypy_boto3_mediastore.literals import ContainerLevelMetricsType

def get_value() -> ContainerLevelMetricsType:
    return "DISABLED"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from mypy_boto3_mediastore.type_defs import ContainerTypeDef

def get_value() -> ContainerTypeDef:
    return {
        "Endpoint": ...,
    }