Skip to content

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(...)
  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: DescribeContactRequestWaitTypeDef = {  # (1)
    "contactId": ...,
}

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

ContactUpdatedWaiter#

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

# ContactUpdatedWaiter usage example

from boto3.session import Session

from types_boto3_groundstation.waiter import ContactUpdatedWaiter


session = Session()

client = session.client("groundstation")  # (1)
waiter: ContactUpdatedWaiter = client.get_waiter("contact_updated")  # (2)
await waiter.wait(...)
  1. client: GroundStationClient
  2. waiter: ContactUpdatedWaiter

wait#

Type annotations and code completion for ContactUpdatedWaiter.wait method.

# wait method definition

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

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

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