Skip to content

BillingConductor module

Index > BillingConductor

Auto-generated documentation for BillingConductor type annotations stubs module mypy-boto3-billingconductor.

How to install

VSCode extension

Add AWS Boto3 extension to your VSCode and run AWS boto3: Quick Start command.

Click Modify and select boto3 common and BillingConductor.

From PyPI with pip

Install boto3-stubs for BillingConductor service.

# install with boto3 type annotations
python -m pip install 'boto3-stubs[billingconductor]'


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


# standalone installation
python -m pip install mypy-boto3-billingconductor

How to uninstall

python -m pip uninstall -y mypy-boto3-billingconductor

Usage

Code samples can be found in Examples.

BillingConductorClient

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

Usage example
from boto3.session import Session

from mypy_boto3_billingconductor.client import BillingConductorClient

def get_client() -> BillingConductorClient:
    return Session().client("billingconductor")

Paginators

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

Usage example
from boto3.session import Session

from mypy_boto3_billingconductor.paginator import ListAccountAssociationsPaginator

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

Literals

Type annotations for literals used in methods and schemas.

Usage example
from mypy_boto3_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 mypy_boto3_billingconductor.type_defs import AccountAssociationsListElementTypeDef

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