Skip to content

SupplyChain module#

Index > SupplyChain

Auto-generated documentation for SupplyChain type annotations stubs module types-aiobotocore-supplychain.

How to install#

You can generate type annotations for aioboto3 package locally with mypy-boto3-builder. Use uv for build isolation.

  1. Run mypy-boto3-builder in your package root directory: uvx --with 'aioboto3==14.1.0' mypy-boto3-builder
  2. Select aioboto3 AWS SDK.
  3. Add SupplyChain service.
  4. Use provided commands to install generated packages.

From PyPI with pip#

Install types-aioboto3 for SupplyChain service.

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

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

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

How to uninstall#

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

Usage#

Code samples can be found in Examples.

SupplyChainClient#

Type annotations and code completion for session.client("supplychain") as SupplyChainClient boto3 documentation

# SupplyChainClient usage example

from aioboto3.session import Session

from types_aiobotocore_supplychain.client import SupplyChainClient


session = Session()
async with session.client("supplychain") as client:
    client: SupplyChainClient

Paginators#

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

# ListDataIntegrationFlowsPaginator usage example

from types_aiobotocore_supplychain.paginator import ListDataIntegrationFlowsPaginator

def get_list_data_integration_flows_paginator() -> ListDataIntegrationFlowsPaginator:
    return client.get_paginator("list_data_integration_flows"))

Literals#

Type annotations for literals used in methods and schema.

# ConfigurationJobStatusType usage example

from types_aiobotocore_supplychain.literals import ConfigurationJobStatusType

def get_value() -> ConfigurationJobStatusType:
    return "FAILED"

Type definitions#

Type annotations for type definitions used in methods and schema.