Skip to content

TelcoNetworkBuilder module

Index > TelcoNetworkBuilder

Auto-generated documentation for TelcoNetworkBuilder type annotations stubs module mypy-boto3-tnb.

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 TelcoNetworkBuilder.

From PyPI with pip

Install boto3-stubs for TelcoNetworkBuilder service.

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


# 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[tnb]'


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

How to uninstall

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

Usage

Code samples can be found in Examples.

TelcoNetworkBuilderClient

Type annotations and code completion for boto3.client("tnb") as TelcoNetworkBuilderClient boto3 documentation

Usage example
from boto3.session import Session

from mypy_boto3_tnb.client import TelcoNetworkBuilderClient

def get_client() -> TelcoNetworkBuilderClient:
    return Session().client("tnb")

Paginators

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

Usage example
from boto3.session import Session

from mypy_boto3_tnb.paginator import ListSolFunctionInstancesPaginator

def get_list_sol_function_instances_paginator() -> ListSolFunctionInstancesPaginator:
    return Session().client("tnb").get_paginator("list_sol_function_instances"))

Literals

Type annotations for literals used in methods and schemas.

Usage example
from mypy_boto3_tnb.literals import DescriptorContentTypeType

def get_value() -> DescriptorContentTypeType:
    return "text/plain"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from mypy_boto3_tnb.type_defs import CancelSolNetworkOperationInputRequestTypeDef

def get_value() -> CancelSolNetworkOperationInputRequestTypeDef:
    return {
        "nsLcmOpOccId": ...,
    }