Skip to content

Examples

Index > LookoutMetrics > Examples

Auto-generated documentation for LookoutMetrics type annotations stubs module types-aiobotocore-lookoutmetrics.

Client

Implicit type annotations

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

Write your LookoutMetrics 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("lookoutmetrics") as client:  # (1)
    result = await client.create_alert()  # (2)
  1. client: LookoutMetricsClient
  2. result: CreateAlertResponseTypeDef

Explicit type annotations

With types-aioboto3-lite[lookoutmetrics] or a standalone types_aiobotocore_lookoutmetrics package, you have to explicitly specify client: LookoutMetricsClient 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_lookoutmetrics.client import LookoutMetricsClient
from types_aiobotocore_lookoutmetrics.type_defs import CreateAlertResponseTypeDef
from types_aiobotocore_lookoutmetrics.type_defs import CreateAlertRequestRequestTypeDef


session = Session()

client: LookoutMetricsClient
async with session.client("lookoutmetrics") as client:  # (1)
    kwargs: CreateAlertRequestRequestTypeDef = {...}  # (2)
    result: CreateAlertResponseTypeDef = await client.create_alert(**kwargs)  # (3)
  1. client: LookoutMetricsClient
  2. kwargs: CreateAlertRequestRequestTypeDef
  3. result: CreateAlertResponseTypeDef