Skip to content

RoboMaker module#

Index > RoboMaker

Auto-generated documentation for RoboMaker type annotations stubs module mypy-boto3-robomaker.

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

From PyPI with pip#

Install boto3-stubs for RoboMaker service.

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


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


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

How to uninstall#

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

Usage#

Code samples can be found in Examples.

RoboMakerClient#

Type annotations and code completion for boto3.client("robomaker") as RoboMakerClient boto3 documentation

# RoboMakerClient usage example

from boto3.session import Session

from mypy_boto3_robomaker.client import RoboMakerClient

def get_client() -> RoboMakerClient:
    return Session().client("robomaker")

Paginators#

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

# ListDeploymentJobsPaginator usage example

from boto3.session import Session

from mypy_boto3_robomaker.paginator import ListDeploymentJobsPaginator

def get_list_deployment_jobs_paginator() -> ListDeploymentJobsPaginator:
    return Session().client("robomaker").get_paginator("list_deployment_jobs"))

Literals#

Type annotations for literals used in methods and schema.

# ArchitectureType usage example

from mypy_boto3_robomaker.literals import ArchitectureType

def get_value() -> ArchitectureType:
    return "ARM64"

Type definitions#

Type annotations for type definitions used in methods and schema.