@worktif/purews
Version:
Work TIF TypeScript-based AWS infrastructure toolkit featuring DynamoDB integration, AppSync support, SES functionality, and GraphQL capabilities with comprehensive audit logging and AWS Signature V4 authentication.
15 lines (14 loc) • 569 B
TypeScript
import 'reflect-metadata';
/**
* Enum representing dependency injection keys used within the application.
* These keys are used to bind specific configurations or service factories
* to facilitate dependency injection and ensure modular application architecture.
*
* @enum {string}
*/
export declare const enum PurewsDi {
EnvConfigPurewsBind = "env_config_purews_bind",
DynamoDbServiceFactoryBind = "dynamo_db_service_factory_bind",
AppSyncServiceFactoryBind = "app_sync_service_factory_bind",
SesServiceFactoryBind = "ses_service_factory_bind"
}