跳转到内容
简体中文

DynamoDbConnection

此内容尚不支持你的语言。

DynamoDbConnection = object

Defined in: src/persistence/journals/DynamoDbClient.ts:103

Connection options shared by all three DynamoDB stores.

readonly optional clientConfig?: Record<string, unknown>

Defined in: src/persistence/journals/DynamoDbClient.ts:115

Extra DynamoDBClient config, merged over region / endpoint: { credentials, maxAttempts, requestHandler, … }.


readonly optional endpoint?: string

Defined in: src/persistence/journals/DynamoDbClient.ts:110

Override the service endpoint — how you point at dynamodb-local or LocalStack (http://localhost:8000).


readonly optional operations?: DynamoDbOperations

Defined in: src/persistence/journals/DynamoDbClient.ts:121

Pre-built operations façade — bypasses the lazy SDK import entirely. Use to share ONE client across the journal, snapshot and durable-state stores (see registerDynamoDbPlugins), or to inject a fake in tests.


readonly optional region?: string

Defined in: src/persistence/journals/DynamoDbClient.ts:105

AWS region, e.g. eu-central-1. Falls back to the SDK’s own resolution.