API Reference
    Preparing search index...

    A Signer that signs requests using the AWS Signature Version 4 (SigV4) signing process.

    The signer takes and returns web-standard Request objects and performs no network I/O. To send signed requests, pass an instance to createSignedFetcher from @aws-lambda-powertools/signer/fetch.

    import { SigV4Signer } from '@aws-lambda-powertools/signer/sigv4';

    const signer = new SigV4Signer({ service: 'execute-api' });
    const signed = await signer.sign('https://example.execute-api.us-east-1.amazonaws.com/items');

    Implements

    Index