Stone.js API
    Preparing search index...

    The adapter context for the Alibaba FC HTTP adapter.

    Carries the imperative FC response as rawResponse (in addition to the standard properties).

    interface AlibabaFcHttpAdapterContext {
        executionContext: ExecutionContextType;
        incomingEvent?: IncomingHttpEvent;
        incomingEventBuilder: IAdapterEventBuilder<
            IncomingHttpEventOptions,
            IncomingHttpEvent,
        >;
        outgoingResponse?: OutgoingHttpResponse;
        rawEvent: AlibabaFcHttpRequest;
        rawResponse: AlibabaFcHttpResponse;
        rawResponseBuilder: IAdapterEventBuilder<
            RawResponseOptions,
            IRawResponseWrapper<AlibabaFcHttpResponse>,
        >;
    }

    Hierarchy

    Index
    executionContext: ExecutionContextType

    The executionContext of type ExecutionContextType.

    incomingEvent?: IncomingHttpEvent

    The incomingEvent associated with the executionContext.

    incomingEventBuilder: IAdapterEventBuilder<
        IncomingHttpEventOptions,
        IncomingHttpEvent,
    >

    The incomingEventBuilder.

    outgoingResponse?: OutgoingHttpResponse

    The outgoingResponse associated with the executionContext.

    The rawEvent of type RawEventType.

    The imperative FC response object for the current request.

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

    The rawResponseBuilder.