Skip to content

Waiters#

Index > BedrockAgentCoreControl > Waiters

Auto-generated documentation for BedrockAgentCoreControl type annotations stubs module mypy-boto3-bedrock-agentcore-control.

MemoryCreatedWaiter#

Type annotations and code completion for boto3.client("bedrock-agentcore-control").get_waiter("memory_created"). boto3 documentation

# MemoryCreatedWaiter usage example

from boto3.session import Session

from mypy_boto3_bedrock_agentcore_control.waiter import MemoryCreatedWaiter


session = Session()

client = session.client("bedrock-agentcore-control")  # (1)
waiter: MemoryCreatedWaiter = client.get_waiter("memory_created")  # (2)
await waiter.wait(...)
  1. client: BedrockAgentCoreControlClient
  2. waiter: MemoryCreatedWaiter

wait#

Type annotations and code completion for MemoryCreatedWaiter.wait method.

# wait method definition

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

kwargs: GetMemoryInputWaitTypeDef = {  # (1)
    "memoryId": ...,
}

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

PolicyActiveWaiter#

Type annotations and code completion for boto3.client("bedrock-agentcore-control").get_waiter("policy_active"). boto3 documentation

# PolicyActiveWaiter usage example

from boto3.session import Session

from mypy_boto3_bedrock_agentcore_control.waiter import PolicyActiveWaiter


session = Session()

client = session.client("bedrock-agentcore-control")  # (1)
waiter: PolicyActiveWaiter = client.get_waiter("policy_active")  # (2)
await waiter.wait(...)
  1. client: BedrockAgentCoreControlClient
  2. waiter: PolicyActiveWaiter

wait#

Type annotations and code completion for PolicyActiveWaiter.wait method.

# wait method definition

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

kwargs: GetPolicyRequestWaitTypeDef = {  # (1)
    "policyEngineId": ...,
    "policyId": ...,
}

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

PolicyDeletedWaiter#

Type annotations and code completion for boto3.client("bedrock-agentcore-control").get_waiter("policy_deleted"). boto3 documentation

# PolicyDeletedWaiter usage example

from boto3.session import Session

from mypy_boto3_bedrock_agentcore_control.waiter import PolicyDeletedWaiter


session = Session()

client = session.client("bedrock-agentcore-control")  # (1)
waiter: PolicyDeletedWaiter = client.get_waiter("policy_deleted")  # (2)
await waiter.wait(...)
  1. client: BedrockAgentCoreControlClient
  2. waiter: PolicyDeletedWaiter

wait#

Type annotations and code completion for PolicyDeletedWaiter.wait method.

# wait method definition

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

kwargs: GetPolicyRequestWaitExtraTypeDef = {  # (1)
    "policyEngineId": ...,
    "policyId": ...,
}

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

PolicyEngineActiveWaiter#

Type annotations and code completion for boto3.client("bedrock-agentcore-control").get_waiter("policy_engine_active"). boto3 documentation

# PolicyEngineActiveWaiter usage example

from boto3.session import Session

from mypy_boto3_bedrock_agentcore_control.waiter import PolicyEngineActiveWaiter


session = Session()

client = session.client("bedrock-agentcore-control")  # (1)
waiter: PolicyEngineActiveWaiter = client.get_waiter("policy_engine_active")  # (2)
await waiter.wait(...)
  1. client: BedrockAgentCoreControlClient
  2. waiter: PolicyEngineActiveWaiter

wait#

Type annotations and code completion for PolicyEngineActiveWaiter.wait method.

# wait method definition

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

kwargs: GetPolicyEngineRequestWaitTypeDef = {  # (1)
    "policyEngineId": ...,
}

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

PolicyEngineDeletedWaiter#

Type annotations and code completion for boto3.client("bedrock-agentcore-control").get_waiter("policy_engine_deleted"). boto3 documentation

# PolicyEngineDeletedWaiter usage example

from boto3.session import Session

from mypy_boto3_bedrock_agentcore_control.waiter import PolicyEngineDeletedWaiter


session = Session()

client = session.client("bedrock-agentcore-control")  # (1)
waiter: PolicyEngineDeletedWaiter = client.get_waiter("policy_engine_deleted")  # (2)
await waiter.wait(...)
  1. client: BedrockAgentCoreControlClient
  2. waiter: PolicyEngineDeletedWaiter

wait#

Type annotations and code completion for PolicyEngineDeletedWaiter.wait method.

# wait method definition

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

kwargs: GetPolicyEngineRequestWaitExtraTypeDef = {  # (1)
    "policyEngineId": ...,
}

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

PolicyGenerationCompletedWaiter#

Type annotations and code completion for boto3.client("bedrock-agentcore-control").get_waiter("policy_generation_completed"). boto3 documentation

# PolicyGenerationCompletedWaiter usage example

from boto3.session import Session

from mypy_boto3_bedrock_agentcore_control.waiter import PolicyGenerationCompletedWaiter


session = Session()

client = session.client("bedrock-agentcore-control")  # (1)
waiter: PolicyGenerationCompletedWaiter = client.get_waiter("policy_generation_completed")  # (2)
await waiter.wait(...)
  1. client: BedrockAgentCoreControlClient
  2. waiter: PolicyGenerationCompletedWaiter

wait#

Type annotations and code completion for PolicyGenerationCompletedWaiter.wait method.

# wait method definition

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

kwargs: GetPolicyGenerationRequestWaitTypeDef = {  # (1)
    "policyGenerationId": ...,
    "policyEngineId": ...,
}

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