@dynamo-dot-subscribe/observable-dynamo
Version:
A very thin wrapper around the [AWS SDK v3 DynamoDB client](https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-dynamodb) which converts all of their commands to [Observables](https://rxjs-dev.firebaseapp.com/guide/observable). The API to use th
10 lines (9 loc) • 378 B
TypeScript
import { DynamoDBClientConfig, DynamoDBClientResolvedConfig } from '@aws-sdk/client-dynamodb';
import { Observable } from 'rxjs';
export declare class ObservableDynamoDBClient {
private client;
get config(): DynamoDBClientResolvedConfig;
constructor(config: DynamoDBClientConfig);
send(args: any, options?: any): Observable<any>;
destroy(): void;
}