Skip to content

Examples#

Index > PaymentCryptographyControlPlane > Examples

Auto-generated documentation for PaymentCryptographyControlPlane type annotations stubs module types-aiobotocore-payment-cryptography.

Client#

Implicit type annotations#

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

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

# PaymentCryptographyControlPlaneClient usage example

from aioboto3.session import Session


session = Session()

async with session.client("payment-cryptography") as client:  # (1)
    result = await client.create_alias()  # (2)
  1. client: PaymentCryptographyControlPlaneClient
  2. result: CreateAliasOutputTypeDef
# ListAliasesPaginator usage example

from aioboto3.session import Session


session = Session()

async with session.client("payment-cryptography") as client:  # (1)
    paginator = client.get_paginator("list_aliases")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: PaymentCryptographyControlPlaneClient
  2. paginator: ListAliasesPaginator
  3. item: ListAliasesOutputTypeDef

Explicit type annotations#

With types-aioboto3-lite[payment-cryptography] or a standalone types_aiobotocore_payment_cryptography package, you have to explicitly specify client: PaymentCryptographyControlPlaneClient 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.

# PaymentCryptographyControlPlaneClient usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_payment_cryptography.client import PaymentCryptographyControlPlaneClient
from types_aiobotocore_payment_cryptography.type_defs import CreateAliasOutputTypeDef
from types_aiobotocore_payment_cryptography.type_defs import CreateAliasInputRequestTypeDef


session = Session()

client: PaymentCryptographyControlPlaneClient
async with session.client("payment-cryptography") as client:  # (1)
    kwargs: CreateAliasInputRequestTypeDef = {...}  # (2)
    result: CreateAliasOutputTypeDef = await client.create_alias(**kwargs)  # (3)
  1. client: PaymentCryptographyControlPlaneClient
  2. kwargs: CreateAliasInputRequestTypeDef
  3. result: CreateAliasOutputTypeDef
# ListAliasesPaginator usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_payment_cryptography.client import PaymentCryptographyControlPlaneClient
from types_aiobotocore_payment_cryptography.paginator import ListAliasesPaginator
from types_aiobotocore_payment_cryptography.type_defs import ListAliasesOutputTypeDef


session = Session()

client: PaymentCryptographyControlPlaneClient
async with session.client("payment-cryptography") as client:  # (1)
    paginator: ListAliasesPaginator = client.get_paginator("list_aliases")  # (2)
    async for item in paginator.paginate(...):
        item: ListAliasesOutputTypeDef
        print(item)  # (3)
  1. client: PaymentCryptographyControlPlaneClient
  2. paginator: ListAliasesPaginator
  3. item: ListAliasesOutputTypeDef