Skip to content

Examples#

Index > MainframeModernization > Examples

Auto-generated documentation for MainframeModernization type annotations stubs module types-aiobotocore-m2.

Client#

Implicit type annotations#

Can be used with types-aioboto3[m2] package installed.

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

# MainframeModernizationClient usage example

from aioboto3.session import Session


session = Session()

async with session.client("m2") as client:  # (1)
    result = await client.create_application()  # (2)
  1. client: MainframeModernizationClient
  2. result: CreateApplicationResponseTypeDef
# ListApplicationVersionsPaginator usage example

from aioboto3.session import Session


session = Session()

async with session.client("m2") as client:  # (1)
    paginator = client.get_paginator("list_application_versions")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: MainframeModernizationClient
  2. paginator: ListApplicationVersionsPaginator
  3. item: ListApplicationVersionsResponseTypeDef

Explicit type annotations#

With types-aioboto3-lite[m2] or a standalone types_aiobotocore_m2 package, you have to explicitly specify client: MainframeModernizationClient 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.

# MainframeModernizationClient usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_m2.client import MainframeModernizationClient
from types_aiobotocore_m2.type_defs import CreateApplicationResponseTypeDef
from types_aiobotocore_m2.type_defs import CreateApplicationRequestRequestTypeDef


session = Session()

client: MainframeModernizationClient
async with session.client("m2") as client:  # (1)
    kwargs: CreateApplicationRequestRequestTypeDef = {...}  # (2)
    result: CreateApplicationResponseTypeDef = await client.create_application(**kwargs)  # (3)
  1. client: MainframeModernizationClient
  2. kwargs: CreateApplicationRequestRequestTypeDef
  3. result: CreateApplicationResponseTypeDef
# ListApplicationVersionsPaginator usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_m2.client import MainframeModernizationClient
from types_aiobotocore_m2.paginator import ListApplicationVersionsPaginator
from types_aiobotocore_m2.type_defs import ListApplicationVersionsResponseTypeDef


session = Session()

client: MainframeModernizationClient
async with session.client("m2") as client:  # (1)
    paginator: ListApplicationVersionsPaginator = client.get_paginator("list_application_versions")  # (2)
    async for item in paginator.paginate(...):
        item: ListApplicationVersionsResponseTypeDef
        print(item)  # (3)
  1. client: MainframeModernizationClient
  2. paginator: ListApplicationVersionsPaginator
  3. item: ListApplicationVersionsResponseTypeDef