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