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