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