Skip to content

BillingConductor module

Index > BillingConductor

Auto-generated documentation for BillingConductor type annotations stubs module types-aiobotocore-billingconductor.

How to install

From PyPI with pip

Install types-aioboto3 for BillingConductor service.

# install with aioboto3 type annotations
python -m pip install 'types-aioboto3[billingconductor]'


# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'types-aioboto3-lite[billingconductor]'


# standalone installation
python -m pip install types-aiobotocore-billingconductor

How to uninstall

python -m pip uninstall -y types-aiobotocore-billingconductor

Usage

Code samples can be found in Examples.

BillingConductorClient

Type annotations and code completion for session.client("billingconductor") as BillingConductorClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_billingconductor.client import BillingConductorClient


session = Session()
async with session.client("billingconductor") as client:
    client: BillingConductorClient

Paginators

Type annotations and code completion for paginators from session.client("billingconductor").get_paginator("...").

Usage example
from types_aiobotocore_billingconductor.paginator import ListAccountAssociationsPaginator

def get_list_account_associations_paginator() -> ListAccountAssociationsPaginator:
    return client.get_paginator("list_account_associations"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_billingconductor.literals import AssociateResourceErrorReasonType

def get_value() -> AssociateResourceErrorReasonType:
    return "ILLEGAL_CUSTOMLINEITEM"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_billingconductor.type_defs import AccountAssociationsListElementTypeDef

def get_value() -> AccountAssociationsListElementTypeDef:
    return {
        "AccountId": ...,
    }