Skip to content

Examples#

Index > CloudWatchNetworkMonitor > Examples

Auto-generated documentation for CloudWatchNetworkMonitor type annotations stubs module types-aiobotocore-networkmonitor.

Client#

Implicit type annotations#

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

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

# CloudWatchNetworkMonitorClient usage example

from aioboto3.session import Session


session = Session()

async with session.client("networkmonitor") as client:  # (1)
    result = await client.create_monitor()  # (2)
  1. client: CloudWatchNetworkMonitorClient
  2. result: CreateMonitorOutputTypeDef
# ListMonitorsPaginator usage example

from aioboto3.session import Session


session = Session()

async with session.client("networkmonitor") as client:  # (1)
    paginator = client.get_paginator("list_monitors")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: CloudWatchNetworkMonitorClient
  2. paginator: ListMonitorsPaginator
  3. item: ListMonitorsOutputTypeDef

Explicit type annotations#

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

# CloudWatchNetworkMonitorClient usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_networkmonitor.client import CloudWatchNetworkMonitorClient
from types_aiobotocore_networkmonitor.type_defs import CreateMonitorOutputTypeDef
from types_aiobotocore_networkmonitor.type_defs import CreateMonitorInputRequestTypeDef


session = Session()

client: CloudWatchNetworkMonitorClient
async with session.client("networkmonitor") as client:  # (1)
    kwargs: CreateMonitorInputRequestTypeDef = {...}  # (2)
    result: CreateMonitorOutputTypeDef = await client.create_monitor(**kwargs)  # (3)
  1. client: CloudWatchNetworkMonitorClient
  2. kwargs: CreateMonitorInputRequestTypeDef
  3. result: CreateMonitorOutputTypeDef
# ListMonitorsPaginator usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_networkmonitor.client import CloudWatchNetworkMonitorClient
from types_aiobotocore_networkmonitor.paginator import ListMonitorsPaginator
from types_aiobotocore_networkmonitor.type_defs import ListMonitorsOutputTypeDef


session = Session()

client: CloudWatchNetworkMonitorClient
async with session.client("networkmonitor") as client:  # (1)
    paginator: ListMonitorsPaginator = client.get_paginator("list_monitors")  # (2)
    async for item in paginator.paginate(...):
        item: ListMonitorsOutputTypeDef
        print(item)  # (3)
  1. client: CloudWatchNetworkMonitorClient
  2. paginator: ListMonitorsPaginator
  3. item: ListMonitorsOutputTypeDef