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