Skip to content

Waiters#

Index > AgentRegistryControl > Waiters

Auto-generated documentation for AgentRegistryControl type annotations stubs module mypy-boto3-agent-registry-control.

RegistryReadyWaiter#

Type annotations and code completion for boto3.client("agent-registry-control").get_waiter("registry_ready"). boto3 documentation

# RegistryReadyWaiter usage example

from boto3.session import Session

from mypy_boto3_agent_registry_control.waiter import RegistryReadyWaiter


session = Session()

client = session.client("agent-registry-control")  # (1)
waiter: RegistryReadyWaiter = client.get_waiter("registry_ready")  # (2)
await waiter.wait(...)
  1. client: AgentRegistryControlClient
  2. waiter: RegistryReadyWaiter

wait#

Type annotations and code completion for RegistryReadyWaiter.wait method.

# wait method definition

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

kwargs: GetRegistryRequestWaitTypeDef = {  # (1)
    "registryId": ...,
}

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

RegistryRecordApprovedWaiter#

Type annotations and code completion for boto3.client("agent-registry-control").get_waiter("registry_record_approved"). boto3 documentation

# RegistryRecordApprovedWaiter usage example

from boto3.session import Session

from mypy_boto3_agent_registry_control.waiter import RegistryRecordApprovedWaiter


session = Session()

client = session.client("agent-registry-control")  # (1)
waiter: RegistryRecordApprovedWaiter = client.get_waiter("registry_record_approved")  # (2)
await waiter.wait(...)
  1. client: AgentRegistryControlClient
  2. waiter: RegistryRecordApprovedWaiter

wait#

Type annotations and code completion for RegistryRecordApprovedWaiter.wait method.

# wait method definition

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

kwargs: GetRegistryRecordRequestWaitTypeDef = {  # (1)
    "registryId": ...,
    "recordId": ...,
}

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