@aws-sdk/client-eks
Version:
AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native
51 lines (50 loc) • 1.52 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
EKSClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../EKSClient";
import {
DeleteNodegroupRequest,
DeleteNodegroupResponse,
} from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface DeleteNodegroupCommandInput extends DeleteNodegroupRequest {}
export interface DeleteNodegroupCommandOutput
extends DeleteNodegroupResponse,
__MetadataBearer {}
declare const DeleteNodegroupCommand_base: {
new (
input: DeleteNodegroupCommandInput
): import("@smithy/smithy-client").CommandImpl<
DeleteNodegroupCommandInput,
DeleteNodegroupCommandOutput,
EKSClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
__0_0: DeleteNodegroupCommandInput
): import("@smithy/smithy-client").CommandImpl<
DeleteNodegroupCommandInput,
DeleteNodegroupCommandOutput,
EKSClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class DeleteNodegroupCommand extends DeleteNodegroupCommand_base {
protected static __types: {
api: {
input: DeleteNodegroupRequest;
output: DeleteNodegroupResponse;
};
sdk: {
input: DeleteNodegroupCommandInput;
output: DeleteNodegroupCommandOutput;
};
};
}