UNPKG

@aws-sdk/client-eks

Version:

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

19 lines (18 loc) 810 B
import { WaiterConfiguration, WaiterResult } from "@smithy/core/client"; import { DescribeFargateProfileCommandInput, DescribeFargateProfileCommandOutput, } from "../commands/DescribeFargateProfileCommand"; import { EKSClient } from "../EKSClient"; import { EKSServiceException } from "../models/EKSServiceException"; import { ResourceNotFoundException } from "../models/errors"; export declare const waitForFargateProfileDeleted: ( params: WaiterConfiguration<EKSClient>, input: DescribeFargateProfileCommandInput ) => Promise< WaiterResult<DescribeFargateProfileCommandOutput | EKSServiceException> >; export declare const waitUntilFargateProfileDeleted: ( params: WaiterConfiguration<EKSClient>, input: DescribeFargateProfileCommandInput ) => Promise<WaiterResult<ResourceNotFoundException>>;