Skip to content

IoTRoboRunner module

Index > IoTRoboRunner

Auto-generated documentation for IoTRoboRunner type annotations stubs module mypy-boto3-iot-roborunner.

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

From PyPI with pip

Install boto3-stubs for IoTRoboRunner service.

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


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


# standalone installation
python -m pip install mypy-boto3-iot-roborunner

How to uninstall

python -m pip uninstall -y mypy-boto3-iot-roborunner

Usage

Code samples can be found in Examples.

IoTRoboRunnerClient

Type annotations and code completion for boto3.client("iot-roborunner") as IoTRoboRunnerClient boto3 documentation

Usage example
from boto3.session import Session

from mypy_boto3_iot_roborunner.client import IoTRoboRunnerClient

def get_client() -> IoTRoboRunnerClient:
    return Session().client("iot-roborunner")

Paginators

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

Usage example
from boto3.session import Session

from mypy_boto3_iot_roborunner.paginator import ListDestinationsPaginator

def get_list_destinations_paginator() -> ListDestinationsPaginator:
    return Session().client("iot-roborunner").get_paginator("list_destinations"))

Literals

Type annotations for literals used in methods and schemas.

Usage example
from mypy_boto3_iot_roborunner.literals import DestinationStateType

def get_value() -> DestinationStateType:
    return "DECOMMISSIONED"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from mypy_boto3_iot_roborunner.type_defs import CartesianCoordinatesTypeDef

def get_value() -> CartesianCoordinatesTypeDef:
    return {
        "x": ...,
        "y": ...,
    }