dynamodb.d.ts 529 B

123456789
  1. import {Service} from '../service';
  2. import {DocumentClient as DDBDocumentClient} 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 DDBDocumentClient;
  9. }