Skip to content

NimbleStudio module

Index > NimbleStudio

Auto-generated documentation for NimbleStudio type annotations stubs module mypy-boto3-nimble.

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

From PyPI with pip

Install boto3-stubs for NimbleStudio service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

NimbleStudioClient

Type annotations and code completion for boto3.client("nimble") as NimbleStudioClient boto3 documentation

Usage example
from boto3.session import Session

from mypy_boto3_nimble.client import NimbleStudioClient

def get_client() -> NimbleStudioClient:
    return Session().client("nimble")

Paginators

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

Usage example
from boto3.session import Session

from mypy_boto3_nimble.paginator import ListEulaAcceptancesPaginator

def get_list_eula_acceptances_paginator() -> ListEulaAcceptancesPaginator:
    return Session().client("nimble").get_paginator("list_eula_acceptances"))

Waiters

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

Usage example
from boto3.session import Session

from mypy_boto3_nimble.waiter import LaunchProfileDeletedWaiter

def get_launch_profile_deleted_waiter() -> LaunchProfileDeletedWaiter:
    return Session().client("nimble").get_waiter("launch_profile_deleted")

Literals

Type annotations for literals used in methods and schemas.

Usage example
from mypy_boto3_nimble.literals import AutomaticTerminationModeType

def get_value() -> AutomaticTerminationModeType:
    return "ACTIVATED"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from mypy_boto3_nimble.type_defs import AcceptEulasRequestRequestTypeDef

def get_value() -> AcceptEulasRequestRequestTypeDef:
    return {
        "studioId": ...,
    }