dynamodb.d.ts (505B)
1 import {Service} from '../service'; 2 import {DocumentClient} from '../dynamodb/document_client'; 3 export class DynamoDBCustomizations extends Service { 4 /** 5 * The document client simplifies working with items in Amazon DynamoDB by abstracting away the notion of attribute values. 6 * This abstraction annotates native JavaScript types supplied as input parameters, as well as converts annotated response data to native JavaScript types. 7 */ 8 static DocumentClient: typeof DocumentClient; 9 }