Skip to content

NimbleStudio module

Index > NimbleStudio

Auto-generated documentation for NimbleStudio type annotations stubs module types-aiobotocore-nimble.

How to install

From PyPI with pip

Install types-aioboto3 for NimbleStudio service.

# install with aioboto3 type annotations
python -m pip install 'types-aioboto3[nimble]'


# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'types-aioboto3-lite[nimble]'


# standalone installation
python -m pip install types-aiobotocore-nimble

How to uninstall

python -m pip uninstall -y types-aiobotocore-nimble

Usage

Code samples can be found in Examples.

NimbleStudioClient

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

Usage example
from aioboto3.session import Session

from types_aiobotocore_nimble.client import NimbleStudioClient


session = Session()
async with session.client("nimble") as client:
    client: NimbleStudioClient

Paginators

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

Usage example
from types_aiobotocore_nimble.paginator import ListEulaAcceptancesPaginator

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

Waiters

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

Usage example
from types_aiobotocore_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 schema.

Usage example
from types_aiobotocore_nimble.literals import LaunchProfileDeletedWaiterName

def get_value() -> LaunchProfileDeletedWaiterName:
    return "launch_profile_deleted"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_nimble.type_defs import AcceptEulasRequestRequestTypeDef

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