@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 {
CreateNodegroupRequest,
CreateNodegroupResponse,
} from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface CreateNodegroupCommandInput extends CreateNodegroupRequest {}
export interface CreateNodegroupCommandOutput
extends CreateNodegroupResponse,
__MetadataBearer {}
declare const CreateNodegroupCommand_base: {
new (
input: CreateNodegroupCommandInput
): import("@smithy/smithy-client").CommandImpl<
CreateNodegroupCommandInput,
CreateNodegroupCommandOutput,
EKSClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
__0_0: CreateNodegroupCommandInput
): import("@smithy/smithy-client").CommandImpl<
CreateNodegroupCommandInput,
CreateNodegroupCommandOutput,
EKSClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class CreateNodegroupCommand extends CreateNodegroupCommand_base {
protected static __types: {
api: {
input: CreateNodegroupRequest;
output: CreateNodegroupResponse;
};
sdk: {
input: CreateNodegroupCommandInput;
output: CreateNodegroupCommandOutput;
};
};
}