Skip to content

Examples#

Index > OpenSearchIngestion > Examples

Auto-generated documentation for OpenSearchIngestion type annotations stubs module types-aiobotocore-osis.

Client#

Implicit type annotations#

Can be used with types-aiobotocore[osis] package installed.

Write your OpenSearchIngestion code as usual, type checking and code completion should work out of the box.

# OpenSearchIngestionClient usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("osis") as client:  # (1)
    result = await client.create_pipeline()  # (2)
  1. client: OpenSearchIngestionClient
  2. result: CreatePipelineResponseTypeDef

Explicit type annotations#

With types-aiobotocore-lite[osis] or a standalone types_aiobotocore_osis package, you have to explicitly specify client: OpenSearchIngestionClient type annotation.

All other type annotations are optional, as types should be discovered automatically. However, these type annotations can be helpful in your functions and methods.

# OpenSearchIngestionClient usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_osis.client import OpenSearchIngestionClient
from types_aiobotocore_osis.type_defs import CreatePipelineResponseTypeDef
from types_aiobotocore_osis.type_defs import CreatePipelineRequestRequestTypeDef


session = get_session()

async with session.create_client("osis") as client:
    client: OpenSearchIngestionClient
    kwargs: CreatePipelineRequestRequestTypeDef = {...}
    result: CreatePipelineResponseTypeDef = await client.create_pipeline(**kwargs)