Skip to content

Examples

Index > NimbleStudio > Examples

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

Client

Implicit type annotations

Can be used with boto3-stubs[nimble] package installed.

Write your NimbleStudio code as usual, type checking and code completion should work out of the box.

Client usage example
from boto3.session import Session


session = Session()

client = session.client("nimble")  # (1)
result = client.accept_eulas()  # (2)
  1. client: NimbleStudioClient
  2. result: AcceptEulasResponseTypeDef
Paginator usage example
from boto3.session import Session


session = Session()
client = session.client("nimble")  # (1)

paginator = client.get_paginator("list_eula_acceptances")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: NimbleStudioClient
  2. paginator: ListEulaAcceptancesPaginator
  3. item: ListEulaAcceptancesResponseTypeDef
Waiter usage example
from boto3.session import Session


session = Session()
client = session.client("nimble")  # (1)

waiter = client.get_waiter("launch_profile_deleted")  # (2)
waiter.wait()
  1. client: NimbleStudioClient
  2. waiter: LaunchProfileDeletedWaiter

Explicit type annotations

With boto3-stubs-lite[nimble] or a standalone mypy_boto3_nimble package, you have to explicitly specify client: NimbleStudioClient type annotation.

All other type annotations are optional, as types should be discovered automatically. However, these type annotations can be helpful in your functions and methods.

Client usage example
from boto3.session import Session

from mypy_boto3_nimble.client import NimbleStudioClient
from mypy_boto3_nimble.type_defs import AcceptEulasResponseTypeDef
from mypy_boto3_nimble.type_defs import AcceptEulasRequestRequestTypeDef


session = Session()

client: NimbleStudioClient = session.client("nimble")

kwargs: AcceptEulasRequestRequestTypeDef = {...}
result: AcceptEulasResponseTypeDef = client.accept_eulas(**kwargs)
Paginator usage example
from boto3.session import Session

from mypy_boto3_nimble.client import NimbleStudioClient
from mypy_boto3_nimble.paginator import ListEulaAcceptancesPaginator
from mypy_boto3_nimble.type_defs import ListEulaAcceptancesResponseTypeDef


session = Session()
client: NimbleStudioClient = session.client("nimble")

paginator: ListEulaAcceptancesPaginator = client.get_paginator("list_eula_acceptances")
for item in paginator.paginate(...):
    item: ListEulaAcceptancesResponseTypeDef
    print(item)
Waiter usage example
from boto3.session import Session

from mypy_boto3_nimble.client import NimbleStudioClient
from mypy_boto3_nimble.waiter import LaunchProfileDeletedWaiter

session = Session()
client: NimbleStudioClient = session.client("nimble")

waiter: LaunchProfileDeletedWaiter = client.get_waiter("launch_profile_deleted")
waiter.wait()