UNPKG

@aws-sdk/client-eks

Version:

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

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