Waiters#
Index > GroundStation > Waiters
Auto-generated documentation for GroundStation type annotations stubs module types-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 types_boto3_groundstation.waiter import ContactScheduledWaiter
session = Session()
client = session.client("groundstation")  # (1)
waiter: ContactScheduledWaiter = client.get_waiter("contact_scheduled")  # (2)
await waiter.wait(...)- client: GroundStationClient
- waiter: ContactScheduledWaiter
wait#
Type annotations and code completion for ContactScheduledWaiter.wait method.
# wait method definition
def wait(
    self,
    *,
    contactId: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...# wait method usage example with argument unpacking
kwargs: DescribeContactRequestWaitTypeDef = {  # (1)
    "contactId": ...,
}
parent.wait(**kwargs)