Skip to content

Waiters#

Index > GroundStation > Waiters

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

ContactScheduledWaiter#

Type annotations and code completion for session.create_client("groundstation").get_waiter("contact_scheduled"). boto3 documentation

# ContactScheduledWaiter usage example

from aiobotocore.session import Session

from types_aiobotocore_groundstation.waiter import ContactScheduledWaiter

session = get_session()
async with session.create_client("groundstation") as client:  # (1)
    waiter: ContactScheduledWaiter = client.get_waiter("contact_scheduled")  # (2)
    await waiter.wait()
  1. client: GroundStationClient
  2. waiter: ContactScheduledWaiter

wait#

Type annotations and code completion for ContactScheduledWaiter.wait method.

# wait method definition

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

kwargs: DescribeContactRequestContactScheduledWaitTypeDef = {  # (1)
    "contactId": ...,
}

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