Values.DocumentDBEventSourceConfigSourceSpecific configuration settings for a DocumentDB event source.
type nonrec t = {databaseName : DatabaseName.t option;The name of the database to consume within the DocumentDB cluster.
*)collectionName : CollectionName.t option;The name of the collection to consume within the database. If you do not specify a collection, Lambda consumes all collections.
*)fullDocument : FullDocument.t option;Determines what DocumentDB sends to your event stream during document update operations. If set to UpdateLookup, DocumentDB sends a delta describing the changes, along with a copy of the entire document. Otherwise, DocumentDB sends only a partial document that contains the changes.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of DatabaseName.t ]) list ]