genkitx-aws-bedrock
    Preparing search index...

    Interface LambdaActionContext

    Extended action context that includes Lambda-specific information

    interface LambdaActionContext {
        auth?: Record<string, any>;
        lambda?: {
            context: {
                awsRequestId: string;
                functionName: string;
                functionVersion: string;
                invokedFunctionArn: string;
                memoryLimitInMB: string;
            };
            event: {
                headers: Record<string, string | undefined>;
                pathParameters: Record<string, string | undefined> | null;
                queryStringParameters: Record<string, string | undefined> | null;
                requestContext: Record<string, unknown>;
            };
        };
        [additionalContext: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [additionalContext: string]: any
    Index

    Properties

    Properties

    auth?: Record<string, any>

    Information about the currently authenticated user if provided.

    lambda?: {
        context: {
            awsRequestId: string;
            functionName: string;
            functionVersion: string;
            invokedFunctionArn: string;
            memoryLimitInMB: string;
        };
        event: {
            headers: Record<string, string | undefined>;
            pathParameters: Record<string, string | undefined> | null;
            queryStringParameters: Record<string, string | undefined> | null;
            requestContext: Record<string, unknown>;
        };
    }

    Lambda-specific context data