UNPKG

@aws-sdk/client-dynamodb

Version:

AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native

15 lines (14 loc) 790 B
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter"; import { type DescribeExportCommandInput } from "../commands/DescribeExportCommand"; import type { DynamoDBClient } from "../DynamoDBClient"; /** * * @deprecated Use waitUntilExportCompleted instead. waitForExportCompleted does not throw error in non-success cases. */ export declare const waitForExportCompleted: (params: WaiterConfiguration<DynamoDBClient>, input: DescribeExportCommandInput) => Promise<WaiterResult>; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeExportCommand for polling. */ export declare const waitUntilExportCompleted: (params: WaiterConfiguration<DynamoDBClient>, input: DescribeExportCommandInput) => Promise<WaiterResult>;