@karmaniverous/aws-api-gateway-tools
    Preparing search index...

    Type Alias ApiGatewayPort

    Small, testable port for the API Gateway operations used by this repo.

    Implementations may paginate internally and return full arrays.

    type ApiGatewayPort = {
        flushStageCache(
            opts: { restApiId: string; stageName: string },
        ): Promise<void>;
        listApiKeys(
            opts: { includeValues: boolean; limit?: number; nameQuery: string },
        ): Promise<ApiKeySummary[]>;
        listRestApis(opts?: { limit?: number }): Promise<RestApiSummary[]>;
    }

    Implemented by

    Index

    Methods