API Reference
    Preparing search index...

    A request signer.

    This is the structural contract that every signing variant (e.g. SigV4, and future variants such as SigV4a) implements, and the contract that the createSignedFetcher factory depends on.

    Implementations take a web-standard request and return a signed web-standard Request, performing no network I/O.

    interface Signer {
        sign(
            input: string | URL | Request,
            init?: RequestInit,
        ): Promise<Request>;
    }

    Implemented by

    Index