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>
17 lines
940 B
Text
17 lines
940 B
Text
import { AwsCredentialIdentity } from "@aws-sdk/types";
|
|
import { SignatureV4 } from "@smithy/signature-v4";
|
|
import { HttpRequest as IHttpRequest, RequestPresigningArguments, RequestSigningArguments } from "@smithy/types";
|
|
export declare class SignatureV4S3Express extends SignatureV4 {
|
|
/**
|
|
* Signs with alternate provided credentials instead of those provided in the
|
|
* constructor.
|
|
*
|
|
* Additionally omits the credential sessionToken and assigns it to the
|
|
* alternate header field for S3 Express.
|
|
*/
|
|
signWithCredentials(requestToSign: IHttpRequest, credentials: AwsCredentialIdentity, options?: RequestSigningArguments): Promise<IHttpRequest>;
|
|
/**
|
|
* Similar to {@link SignatureV4S3Express#signWithCredentials} but for presigning.
|
|
*/
|
|
presignWithCredentials(requestToSign: IHttpRequest, credentials: AwsCredentialIdentity, options?: RequestPresigningArguments): Promise<IHttpRequest>;
|
|
}
|