Event Source Mapping Document Db Event Source Config
data class EventSourceMappingDocumentDbEventSourceConfig(val collectionName: String? = null, val databaseName: String, val fullDocument: String? = null)
Constructors
Link copied to clipboard
fun EventSourceMappingDocumentDbEventSourceConfig(collectionName: String? = null, databaseName: String, fullDocument: String? = null)
Types
Properties
Link copied to clipboard
Link copied to clipboard
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. Valid values: UpdateLookup
, Default
.