Skip to content

Waiters#

Index > DynamoDB > Waiters

Auto-generated documentation for DynamoDB type annotations stubs module mypy-boto3-dynamodb.

ContributorInsightsEnabledWaiter#

Type annotations and code completion for boto3.client("dynamodb").get_waiter("contributor_insights_enabled"). boto3 documentation

# ContributorInsightsEnabledWaiter usage example

from boto3.session import Session

from mypy_boto3_dynamodb.waiter import ContributorInsightsEnabledWaiter


session = Session()

client = session.client("dynamodb")  # (1)
waiter: ContributorInsightsEnabledWaiter = client.get_waiter("contributor_insights_enabled")  # (2)
await waiter.wait(...)
  1. client: DynamoDBClient
  2. waiter: ContributorInsightsEnabledWaiter

wait#

Type annotations and code completion for ContributorInsightsEnabledWaiter.wait method.

# wait method definition

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

kwargs: DescribeContributorInsightsInputWaitTypeDef = {  # (1)
    "TableName": ...,
}

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

ExportCompletedWaiter#

Type annotations and code completion for boto3.client("dynamodb").get_waiter("export_completed"). boto3 documentation

# ExportCompletedWaiter usage example

from boto3.session import Session

from mypy_boto3_dynamodb.waiter import ExportCompletedWaiter


session = Session()

client = session.client("dynamodb")  # (1)
waiter: ExportCompletedWaiter = client.get_waiter("export_completed")  # (2)
await waiter.wait(...)
  1. client: DynamoDBClient
  2. waiter: ExportCompletedWaiter

wait#

Type annotations and code completion for ExportCompletedWaiter.wait method.

# wait method definition

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

kwargs: DescribeExportInputWaitTypeDef = {  # (1)
    "ExportArn": ...,
}

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

ImportCompletedWaiter#

Type annotations and code completion for boto3.client("dynamodb").get_waiter("import_completed"). boto3 documentation

# ImportCompletedWaiter usage example

from boto3.session import Session

from mypy_boto3_dynamodb.waiter import ImportCompletedWaiter


session = Session()

client = session.client("dynamodb")  # (1)
waiter: ImportCompletedWaiter = client.get_waiter("import_completed")  # (2)
await waiter.wait(...)
  1. client: DynamoDBClient
  2. waiter: ImportCompletedWaiter

wait#

Type annotations and code completion for ImportCompletedWaiter.wait method.

# wait method definition

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

kwargs: DescribeImportInputWaitTypeDef = {  # (1)
    "ImportArn": ...,
}

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

KinesisStreamingDestinationActiveWaiter#

Type annotations and code completion for boto3.client("dynamodb").get_waiter("kinesis_streaming_destination_active"). boto3 documentation

# KinesisStreamingDestinationActiveWaiter usage example

from boto3.session import Session

from mypy_boto3_dynamodb.waiter import KinesisStreamingDestinationActiveWaiter


session = Session()

client = session.client("dynamodb")  # (1)
waiter: KinesisStreamingDestinationActiveWaiter = client.get_waiter("kinesis_streaming_destination_active")  # (2)
await waiter.wait(...)
  1. client: DynamoDBClient
  2. waiter: KinesisStreamingDestinationActiveWaiter

wait#

Type annotations and code completion for KinesisStreamingDestinationActiveWaiter.wait method.

# wait method definition

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

kwargs: DescribeKinesisStreamingDestinationInputWaitTypeDef = {  # (1)
    "TableName": ...,
}

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

TableExistsWaiter#

Type annotations and code completion for boto3.client("dynamodb").get_waiter("table_exists"). boto3 documentation

# TableExistsWaiter usage example

from boto3.session import Session

from mypy_boto3_dynamodb.waiter import TableExistsWaiter


session = Session()

client = session.client("dynamodb")  # (1)
waiter: TableExistsWaiter = client.get_waiter("table_exists")  # (2)
await waiter.wait(...)
  1. client: DynamoDBClient
  2. waiter: TableExistsWaiter

wait#

Type annotations and code completion for TableExistsWaiter.wait method.

# wait method definition

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

kwargs: DescribeTableInputWaitTypeDef = {  # (1)
    "TableName": ...,
}

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

TableNotExistsWaiter#

Type annotations and code completion for boto3.client("dynamodb").get_waiter("table_not_exists"). boto3 documentation

# TableNotExistsWaiter usage example

from boto3.session import Session

from mypy_boto3_dynamodb.waiter import TableNotExistsWaiter


session = Session()

client = session.client("dynamodb")  # (1)
waiter: TableNotExistsWaiter = client.get_waiter("table_not_exists")  # (2)
await waiter.wait(...)
  1. client: DynamoDBClient
  2. waiter: TableNotExistsWaiter

wait#

Type annotations and code completion for TableNotExistsWaiter.wait method.

# wait method definition

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

kwargs: DescribeTableInputWaitExtraTypeDef = {  # (1)
    "TableName": ...,
}

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