Skip to content

ImportExport module

Index > ImportExport

Auto-generated documentation for ImportExport type annotations stubs module types-aiobotocore-importexport.

How to install

From PyPI with pip

Install types-aioboto3 for ImportExport service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

ImportExportClient

Type annotations and code completion for session.client("importexport") as ImportExportClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_importexport.client import ImportExportClient


session = Session()
async with session.client("importexport") as client:
    client: ImportExportClient

Paginators

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

Usage example
from types_aiobotocore_importexport.paginator import ListJobsPaginator

def get_list_jobs_paginator() -> ListJobsPaginator:
    return client.get_paginator("list_jobs"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_importexport.literals import JobTypeType

def get_value() -> JobTypeType:
    return "Export"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_importexport.type_defs import ArtifactTypeDef

def get_value() -> ArtifactTypeDef:
    return {
        "Description": ...,
    }