Skip to content

ElasticLoadBalancing module

Index > ElasticLoadBalancing

Auto-generated documentation for ElasticLoadBalancing type annotations stubs module mypy-boto3-elb.

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

From PyPI with pip

Install boto3-stubs for ElasticLoadBalancing service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

ElasticLoadBalancingClient

Type annotations and code completion for boto3.client("elb") as ElasticLoadBalancingClient boto3 documentation

Usage example
from boto3.session import Session

from mypy_boto3_elb.client import ElasticLoadBalancingClient

def get_client() -> ElasticLoadBalancingClient:
    return Session().client("elb")

Paginators

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

Usage example
from boto3.session import Session

from mypy_boto3_elb.paginator import DescribeAccountLimitsPaginator

def get_describe_account_limits_paginator() -> DescribeAccountLimitsPaginator:
    return Session().client("elb").get_paginator("describe_account_limits"))

Waiters

Type annotations and code completion for waiters from boto3.client("elb").get_waiter("...").

Usage example
from boto3.session import Session

from mypy_boto3_elb.waiter import AnyInstanceInServiceWaiter

def get_any_instance_in_service_waiter() -> AnyInstanceInServiceWaiter:
    return Session().client("elb").get_waiter("any_instance_in_service")

Literals

Type annotations for literals used in methods and schemas.

Usage example
from mypy_boto3_elb.literals import AnyInstanceInServiceWaiterName

def get_value() -> AnyInstanceInServiceWaiterName:
    return "any_instance_in_service"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from mypy_boto3_elb.type_defs import AccessLogTypeDef

def get_value() -> AccessLogTypeDef:
    return {
        "Enabled": ...,
    }