Skip to content

Waiters#

Index > signer > Waiters

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

SuccessfulSigningJobWaiter#

Type annotations and code completion for session.create_client("signer").get_waiter("successful_signing_job"). boto3 documentation

# SuccessfulSigningJobWaiter usage example

from aiobotocore.session import Session

from types_aiobotocore_signer.waiter import SuccessfulSigningJobWaiter

session = get_session()
async with session.create_client("signer") as client:  # (1)
    waiter: SuccessfulSigningJobWaiter = client.get_waiter("successful_signing_job")  # (2)
    await waiter.wait()
  1. client: signerClient
  2. waiter: SuccessfulSigningJobWaiter

wait#

Type annotations and code completion for SuccessfulSigningJobWaiter.wait method.

# wait method definition

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

kwargs: DescribeSigningJobRequestSuccessfulSigningJobWaitTypeDef = {  # (1)
    "jobId": ...,
}

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