Stone.js API
    Preparing search index...

    Represents the context for the Tencent SCF HTTP Adapter.

    This interface extends AdapterContext and includes additional properties specific to HTTP events in Tencent SCF.

    interface TencentScfHttpAdapterContext {
        executionContext: ExecutionContextType;
        incomingEvent?: IncomingHttpEvent;
        incomingEventBuilder: IAdapterEventBuilder<
            IncomingHttpEventOptions,
            IncomingHttpEvent,
        >;
        outgoingResponse?: OutgoingHttpResponse;
        rawEvent: TencentScfHttpEvent;
        rawResponse: RawHttpResponseOptions;
        rawResponseBuilder: IAdapterEventBuilder<
            RawResponseOptions,
            IRawResponseWrapper<RawHttpResponseOptions>,
        >;
    }

    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 raw HTTP response associated with the current context.

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

    The rawResponseBuilder.