Action side channel data, like auth and other invocation context infromation provided by the invoker.

interface ApiKeyContext {
    auth: { apiKey: undefined | string };
    [additionalContext: string]: any;
}

Hierarchy (View Summary)

Indexable

  • [additionalContext: string]: any

Properties

Properties

auth: { apiKey: undefined | string }

Information about the currently authenticated user if provided.