@aws-sdk/client-eks
Version:
AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native
18 lines (17 loc) • 711 B
TypeScript
import { WaiterConfiguration, WaiterResult } from "@smithy/core/client";
import {
DescribeNodegroupCommandInput,
DescribeNodegroupCommandOutput,
} from "../commands/DescribeNodegroupCommand";
import { EKSClient } from "../EKSClient";
import { EKSServiceException } from "../models/EKSServiceException";
export declare const waitForNodegroupActive: (
params: WaiterConfiguration<EKSClient>,
input: DescribeNodegroupCommandInput
) => Promise<
WaiterResult<DescribeNodegroupCommandOutput | EKSServiceException>
>;
export declare const waitUntilNodegroupActive: (
params: WaiterConfiguration<EKSClient>,
input: DescribeNodegroupCommandInput
) => Promise<WaiterResult<DescribeNodegroupCommandOutput>>;