Skip to content

Examples#

Index > ApplicationCostProfiler > Examples

Auto-generated documentation for ApplicationCostProfiler type annotations stubs module types-aiobotocore-applicationcostprofiler.

Client#

Implicit type annotations#

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

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

# ApplicationCostProfilerClient usage example

from aioboto3.session import Session


session = Session()

async with session.client("applicationcostprofiler") as client:  # (1)
    result = await client.delete_report_definition()  # (2)
  1. client: ApplicationCostProfilerClient
  2. result: DeleteReportDefinitionResultTypeDef
# ListReportDefinitionsPaginator usage example

from aioboto3.session import Session


session = Session()

async with session.client("applicationcostprofiler") as client:  # (1)
    paginator = client.get_paginator("list_report_definitions")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: ApplicationCostProfilerClient
  2. paginator: ListReportDefinitionsPaginator
  3. item: ListReportDefinitionsResultTypeDef

Explicit type annotations#

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

# ApplicationCostProfilerClient usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_applicationcostprofiler.client import ApplicationCostProfilerClient
from types_aiobotocore_applicationcostprofiler.type_defs import DeleteReportDefinitionResultTypeDef
from types_aiobotocore_applicationcostprofiler.type_defs import DeleteReportDefinitionRequestRequestTypeDef


session = Session()

client: ApplicationCostProfilerClient
async with session.client("applicationcostprofiler") as client:  # (1)
    kwargs: DeleteReportDefinitionRequestRequestTypeDef = {...}  # (2)
    result: DeleteReportDefinitionResultTypeDef = await client.delete_report_definition(**kwargs)  # (3)
  1. client: ApplicationCostProfilerClient
  2. kwargs: DeleteReportDefinitionRequestRequestTypeDef
  3. result: DeleteReportDefinitionResultTypeDef
# ListReportDefinitionsPaginator usage example with type annotations

from aioboto3.session import Session

from types_aiobotocore_applicationcostprofiler.client import ApplicationCostProfilerClient
from types_aiobotocore_applicationcostprofiler.paginator import ListReportDefinitionsPaginator
from types_aiobotocore_applicationcostprofiler.type_defs import ListReportDefinitionsResultTypeDef


session = Session()

client: ApplicationCostProfilerClient
async with session.client("applicationcostprofiler") as client:  # (1)
    paginator: ListReportDefinitionsPaginator = client.get_paginator("list_report_definitions")  # (2)
    async for item in paginator.paginate(...):
        item: ListReportDefinitionsResultTypeDef
        print(item)  # (3)
  1. client: ApplicationCostProfilerClient
  2. paginator: ListReportDefinitionsPaginator
  3. item: ListReportDefinitionsResultTypeDef