UNPKG

@aws-sdk/client-eks

Version:

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

19 lines (18 loc) 770 B
import { WaiterConfiguration, WaiterResult } from "@smithy/core/client"; import { DescribeNodegroupCommandInput, DescribeNodegroupCommandOutput, } from "../commands/DescribeNodegroupCommand"; import { EKSClient } from "../EKSClient"; import { EKSServiceException } from "../models/EKSServiceException"; import { ResourceNotFoundException } from "../models/errors"; export declare const waitForNodegroupDeleted: ( params: WaiterConfiguration<EKSClient>, input: DescribeNodegroupCommandInput ) => Promise< WaiterResult<DescribeNodegroupCommandOutput | EKSServiceException> >; export declare const waitUntilNodegroupDeleted: ( params: WaiterConfiguration<EKSClient>, input: DescribeNodegroupCommandInput ) => Promise<WaiterResult<ResourceNotFoundException>>;