UNPKG

@aws-sdk/client-eks

Version:

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

16 lines (15 loc) 689 B
import { WaiterConfiguration, WaiterResult } from "@smithy/core/client"; import { DescribeClusterCommandInput, DescribeClusterCommandOutput, } from "../commands/DescribeClusterCommand"; import { EKSClient } from "../EKSClient"; import { EKSServiceException } from "../models/EKSServiceException"; export declare const waitForClusterActive: ( params: WaiterConfiguration<EKSClient>, input: DescribeClusterCommandInput ) => Promise<WaiterResult<DescribeClusterCommandOutput | EKSServiceException>>; export declare const waitUntilClusterActive: ( params: WaiterConfiguration<EKSClient>, input: DescribeClusterCommandInput ) => Promise<WaiterResult<DescribeClusterCommandOutput>>;