logstack-zee
Version:
Complete Node.js logging solution with 6 integration methods, S3 bidirectional operations, advanced analytics, and multi-cloud storage support for enterprise-scale applications.
16 lines (15 loc) • 754 B
TypeScript
/**
* 🌩️ AWS S3 Testing - Cron Log Service
*
* This example demonstrates how to test the logstack with AWS S3 storage.
* Make sure you have AWS credentials configured before running this test.
*/
import { Config } from '../types/config';
declare const awsConfig: Config;
declare function validateAWSCredentials(): Promise<boolean>;
declare function testAWSConnection(): Promise<void>;
declare function testS3FileUpload(): Promise<void>;
declare function testMultipleS3Environments(): Promise<void>;
declare function testAWSPerformance(): Promise<void>;
declare function runAWSTests(): Promise<void>;
export { awsConfig, validateAWSCredentials, testAWSConnection, testS3FileUpload, testMultipleS3Environments, testAWSPerformance, runAWSTests };