EventSourceMappingDocumentDbEventSourceConfigArgs

data class EventSourceMappingDocumentDbEventSourceConfigArgs(val collectionName: Output<String>? = null, val databaseName: Output<String>, val fullDocument: Output<String>? = null) : ConvertibleToJava<EventSourceMappingDocumentDbEventSourceConfigArgs>

Constructors

constructor(collectionName: Output<String>? = null, databaseName: Output<String>, fullDocument: Output<String>? = null)

Properties

Link copied to clipboard
val collectionName: Output<String>? = null

The name of the collection to consume within the database. If you do not specify a collection, Lambda consumes all collections.

Link copied to clipboard
val databaseName: Output<String>

The name of the database to consume within the DocumentDB cluster.

Link copied to clipboard
val fullDocument: Output<String>? = null

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.

Functions

Link copied to clipboard
open override fun toJava(): EventSourceMappingDocumentDbEventSourceConfigArgs