lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
26 lines (25 loc) • 555 B
TypeScript
/**
* Checksum Algorithms supported by the SDK.
*/
export declare enum ChecksumAlgorithm {
MD5 = "MD5",
CRC32 = "CRC32",
CRC32C = "CRC32C",
SHA1 = "SHA1",
SHA256 = "SHA256"
}
/**
* Location when the checksum is stored in the request body.
*/
export declare enum ChecksumLocation {
HEADER = "header",
TRAILER = "trailer"
}
/**
* @internal
*/
export declare const DEFAULT_CHECKSUM_ALGORITHM = ChecksumAlgorithm.MD5;
/**
* @internal
*/
export declare const S3_EXPRESS_DEFAULT_CHECKSUM_ALGORITHM = ChecksumAlgorithm.CRC32;