@aws-sdk/client-lambda
Version:
AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native
44 lines (43 loc) • 1.45 kB
TypeScript
import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types";
import { InvokeAsyncRequest, InvokeAsyncResponse } from "../models/models_0";
export { __MetadataBearer };
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/core/client").CommandImpl<
InvokeAsyncCommandInput,
InvokeAsyncCommandOutput,
import("..").LambdaClientResolvedConfig,
import("..").ServiceInputTypes,
import("..").ServiceOutputTypes
>;
new (
input: InvokeAsyncCommandInput,
): import("@smithy/core/client").CommandImpl<
InvokeAsyncCommandInput,
InvokeAsyncCommandOutput,
import("..").LambdaClientResolvedConfig,
import("..").ServiceInputTypes,
import("..").ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
};
export declare class InvokeAsyncCommand extends InvokeAsyncCommand_base {
protected static __types: {
api: {
input: InvokeAsyncRequest;
output: InvokeAsyncResponse;
};
sdk: {
input: InvokeAsyncCommandInput;
output: InvokeAsyncCommandOutput;
};
};
}