@aws-sdk/client-lambda
Version:
AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native
48 lines (47 loc) • 1.4 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
LambdaClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../LambdaClient";
import { AliasConfiguration, GetAliasRequest } from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface GetAliasCommandInput extends GetAliasRequest {}
export interface GetAliasCommandOutput
extends AliasConfiguration,
__MetadataBearer {}
declare const GetAliasCommand_base: {
new (
input: GetAliasCommandInput
): import("@smithy/smithy-client").CommandImpl<
GetAliasCommandInput,
GetAliasCommandOutput,
LambdaClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
input: GetAliasCommandInput
): import("@smithy/smithy-client").CommandImpl<
GetAliasCommandInput,
GetAliasCommandOutput,
LambdaClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class GetAliasCommand extends GetAliasCommand_base {
protected static __types: {
api: {
input: GetAliasRequest;
output: AliasConfiguration;
};
sdk: {
input: GetAliasCommandInput;
output: GetAliasCommandOutput;
};
};
}