@aws-sdk/client-eks
Version:
AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native
15 lines (14 loc) • 751 B
TypeScript
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
import { DescribeClusterCommandInput } from "../commands/DescribeClusterCommand";
import { EKSClient } from "../EKSClient";
/**
*
* @deprecated Use waitUntilClusterDeleted instead. waitForClusterDeleted does not throw error in non-success cases.
*/
export declare const waitForClusterDeleted: (params: WaiterConfiguration<EKSClient>, input: DescribeClusterCommandInput) => Promise<WaiterResult>;
/**
*
* @param params - Waiter configuration options.
* @param input - The input to DescribeClusterCommand for polling.
*/
export declare const waitUntilClusterDeleted: (params: WaiterConfiguration<EKSClient>, input: DescribeClusterCommandInput) => Promise<WaiterResult>;