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