UNPKG

@aws-sdk/client-eks

Version:

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

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