Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
497 B
Text
10 lines
497 B
Text
import type { AwsCredentialIdentity, HttpRequest as IHttpRequest } from "@smithy/types";
|
|
import { AwsSdkSigV4Signer } from "./AwsSdkSigV4Signer";
|
|
/**
|
|
* @internal
|
|
* Note: this is not a signing algorithm implementation. The sign method
|
|
* accepts the real signer as an input parameter.
|
|
*/
|
|
export declare class AwsSdkSigV4ASigner extends AwsSdkSigV4Signer {
|
|
sign(httpRequest: IHttpRequest, identity: AwsCredentialIdentity, signingProperties: Record<string, unknown>): Promise<IHttpRequest>;
|
|
}
|