UNPKG

@aws-sdk/client-lambda

Version:

AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native

49 lines (48 loc) 1.8 kB
import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { InvokeWithResponseStreamRequest, InvokeWithResponseStreamResponse, } from "../models/models_0"; export { __MetadataBearer }; export type InvokeWithResponseStreamCommandInputType = Pick< InvokeWithResponseStreamRequest, Exclude<keyof InvokeWithResponseStreamRequest, "Payload"> > & { Payload?: BlobPayloadInputTypes; }; export interface InvokeWithResponseStreamCommandInput extends InvokeWithResponseStreamCommandInputType {} export interface InvokeWithResponseStreamCommandOutput extends InvokeWithResponseStreamResponse, __MetadataBearer {} declare const InvokeWithResponseStreamCommand_base: { new ( input: InvokeWithResponseStreamCommandInput, ): import("@smithy/core/client").CommandImpl< InvokeWithResponseStreamCommandInput, InvokeWithResponseStreamCommandOutput, import("..").LambdaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes >; new ( input: InvokeWithResponseStreamCommandInput, ): import("@smithy/core/client").CommandImpl< InvokeWithResponseStreamCommandInput, InvokeWithResponseStreamCommandOutput, import("..").LambdaClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes >; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; export declare class InvokeWithResponseStreamCommand extends InvokeWithResponseStreamCommand_base { protected static __types: { api: { input: InvokeWithResponseStreamRequest; output: InvokeWithResponseStreamResponse; }; sdk: { input: InvokeWithResponseStreamCommandInput; output: InvokeWithResponseStreamCommandOutput; }; }; }