Skip to content

Waiters#

Index > AccountAccess > Waiters

Auto-generated documentation for AccountAccess type annotations stubs module mypy-boto3-account-access.

ApplicationActiveWaiter#

Type annotations and code completion for boto3.client("account-access").get_waiter("application_active"). boto3 documentation

# ApplicationActiveWaiter usage example

from boto3.session import Session

from mypy_boto3_account_access.waiter import ApplicationActiveWaiter


session = Session()

client = session.client("account-access")  # (1)
waiter: ApplicationActiveWaiter = client.get_waiter("application_active")  # (2)
await waiter.wait(...)
  1. client: AccountAccessClient
  2. waiter: ApplicationActiveWaiter

wait#

Type annotations and code completion for ApplicationActiveWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    applicationArn: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetApplicationRequestWaitTypeDef = {  # (1)
    "applicationArn": ...,
}

parent.wait(**kwargs)
  1. See GetApplicationRequestWaitTypeDef