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