UNPKG

@aws-sdk/client-eks

Version:

AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native

17 lines (16 loc) 1 kB
import { type WaiterConfiguration, type WaiterResult } from "@smithy/core/client"; import { type DescribeAddonCommandInput, type DescribeAddonCommandOutput } from "../commands/DescribeAddonCommand"; import type { EKSClient } from "../EKSClient"; import type { EKSServiceException } from "../models/EKSServiceException"; import type { ResourceNotFoundException } from "../models/errors"; /** * * @deprecated Use waitUntilAddonDeleted instead. waitForAddonDeleted does not throw error in non-success cases. */ export declare const waitForAddonDeleted: (params: WaiterConfiguration<EKSClient>, input: DescribeAddonCommandInput) => Promise<WaiterResult<DescribeAddonCommandOutput | EKSServiceException>>; /** * * @param params - Waiter configuration options. * @param input - The input to DescribeAddonCommand for polling. */ export declare const waitUntilAddonDeleted: (params: WaiterConfiguration<EKSClient>, input: DescribeAddonCommandInput) => Promise<WaiterResult<ResourceNotFoundException>>;