@aws-sdk/client-lambda
Version:
AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native
46 lines (45 loc) • 1.38 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import {
MetadataBearer as __MetadataBearer,
StreamingBlobPayloadInputTypes,
} from "@smithy/types";
import {
LambdaClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../LambdaClient";
import { InvokeAsyncRequest, InvokeAsyncResponse } from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface InvokeAsyncCommandInput
extends Pick<
InvokeAsyncRequest,
Exclude<keyof InvokeAsyncRequest, "InvokeArgs">
> {
InvokeArgs: StreamingBlobPayloadInputTypes;
}
export interface InvokeAsyncCommandOutput
extends InvokeAsyncResponse,
__MetadataBearer {}
declare const InvokeAsyncCommand_base: {
new (
input: InvokeAsyncCommandInput
): import("@smithy/smithy-client").CommandImpl<
InvokeAsyncCommandInput,
InvokeAsyncCommandOutput,
LambdaClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
__0_0: InvokeAsyncCommandInput
): import("@smithy/smithy-client").CommandImpl<
InvokeAsyncCommandInput,
InvokeAsyncCommandOutput,
LambdaClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class InvokeAsyncCommand extends InvokeAsyncCommand_base {}