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