Skip to content

ElasticInference module

Index > ElasticInference

Auto-generated documentation for ElasticInference type annotations stubs module mypy-boto3-elastic-inference.

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

From PyPI with pip

Install boto3-stubs for ElasticInference service.

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


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


# standalone installation
python -m pip install mypy-boto3-elastic-inference

How to uninstall

python -m pip uninstall -y mypy-boto3-elastic-inference

Usage

Code samples can be found in Examples.

ElasticInferenceClient

Type annotations and code completion for boto3.client("elastic-inference") as ElasticInferenceClient boto3 documentation

Usage example
from boto3.session import Session

from mypy_boto3_elastic_inference.client import ElasticInferenceClient

def get_client() -> ElasticInferenceClient:
    return Session().client("elastic-inference")

Paginators

Type annotations and code completion for paginators from boto3.client("elastic-inference").get_paginator("...").

Usage example
from boto3.session import Session

from mypy_boto3_elastic_inference.paginator import DescribeAcceleratorsPaginator

def get_describe_accelerators_paginator() -> DescribeAcceleratorsPaginator:
    return Session().client("elastic-inference").get_paginator("describe_accelerators"))

Literals

Type annotations for literals used in methods and schemas.

Usage example
from mypy_boto3_elastic_inference.literals import DescribeAcceleratorsPaginatorName

def get_value() -> DescribeAcceleratorsPaginatorName:
    return "describe_accelerators"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from mypy_boto3_elastic_inference.type_defs import AcceleratorTypeOfferingTypeDef

def get_value() -> AcceleratorTypeOfferingTypeDef:
    return {
        "acceleratorType": ...,
    }