Skip to content

MarketplaceCatalog module

Index > MarketplaceCatalog

Auto-generated documentation for MarketplaceCatalog type annotations stubs module types-aiobotocore-marketplace-catalog.

How to install

From PyPI with pip

Install types-aioboto3 for MarketplaceCatalog service.

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


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


# standalone installation
python -m pip install types-aiobotocore-marketplace-catalog

How to uninstall

python -m pip uninstall -y types-aiobotocore-marketplace-catalog

Usage

Code samples can be found in Examples.

MarketplaceCatalogClient

Type annotations and code completion for session.client("marketplace-catalog") as MarketplaceCatalogClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_marketplace_catalog.client import MarketplaceCatalogClient


session = Session()
async with session.client("marketplace-catalog") as client:
    client: MarketplaceCatalogClient

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_marketplace_catalog.literals import ChangeStatusType

def get_value() -> ChangeStatusType:
    return "APPLYING"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_marketplace_catalog.type_defs import CancelChangeSetRequestRequestTypeDef

def get_value() -> CancelChangeSetRequestRequestTypeDef:
    return {
        "Catalog": ...,
        "ChangeSetId": ...,
    }