Skip to content

Waiters#

Index > GroundStation > Waiters

Auto-generated documentation for GroundStation type annotations stubs module mypy-boto3-groundstation.

ContactScheduledWaiter#

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

# ContactScheduledWaiter usage example

from boto3.session import Session

from mypy_boto3_groundstation.waiter import ContactScheduledWaiter


session = Session()

client = session.client("groundstation")  # (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

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