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