Stone.js API
    Preparing search index...

    Represents the context for the AWS Lambda Adapter.

    This interface extends AdapterContext and includes additional properties specific to generic AWS Lambda events.

    interface AwsLambdaAdapterContext {
        executionContext: ExecutionContextType;
        incomingEvent?: IncomingEvent;
        incomingEventBuilder: IAdapterEventBuilder<
            IncomingEventOptions,
            IncomingEvent,
        >;
        outgoingResponse?: OutgoingResponse;
        rawEvent: RawEventType;
        rawResponse: RawResponse;
        rawResponseBuilder: IAdapterEventBuilder<
            RawResponseOptions,
            IRawResponseWrapper<RawResponse>,
        >;
    }

    Hierarchy

    Index
    executionContext: ExecutionContextType

    The executionContext of type ExecutionContextType.

    incomingEvent?: IncomingEvent

    The incomingEvent associated with the executionContext.

    incomingEventBuilder: IAdapterEventBuilder<IncomingEventOptions, IncomingEvent>

    The incomingEventBuilder.

    outgoingResponse?: OutgoingResponse

    The outgoingResponse associated with the executionContext.

    rawEvent: RawEventType

    The rawEvent of type RawEventType.

    rawResponse: RawResponse

    The raw response associated with the current context.

    rawResponseBuilder: IAdapterEventBuilder<
        RawResponseOptions,
        IRawResponseWrapper<RawResponse>,
    >

    The rawResponseBuilder.