Skip to content

Examples

Index > STS > Examples

Auto-generated documentation for STS type annotations stubs module types-aiobotocore-sts.

Client

Implicit type annotations

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

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

Client usage example
from aioboto3.session import Session


session = Session()

async with session.client("sts") as client:  # (1)
    result = await client.assume_role()  # (2)
  1. client: STSClient
  2. result: AssumeRoleResponseTypeDef

Explicit type annotations

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

Client usage example
from aioboto3.session import Session

from types_aiobotocore_sts.client import STSClient
from types_aiobotocore_sts.type_defs import AssumeRoleResponseTypeDef
from types_aiobotocore_sts.type_defs import AssumeRoleRequestRequestTypeDef


session = Session()

client: STSClient
async with session.client("sts") as client:  # (1)
    kwargs: AssumeRoleRequestRequestTypeDef = {...}  # (2)
    result: AssumeRoleResponseTypeDef = await client.assume_role(**kwargs)  # (3)
  1. client: STSClient
  2. kwargs: AssumeRoleRequestRequestTypeDef
  3. result: AssumeRoleResponseTypeDef