APIs.io Engineering Platform · Schema
DocumentDBEventSourceConfig
Specific configuration settings for a DocumentDB event source.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| DatabaseName | object | |
| CollectionName | object | |
| FullDocument | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DocumentDBEventSourceConfig",
"title": "DocumentDBEventSourceConfig",
"type": "object",
"properties": {
"DatabaseName": {
"allOf": [
{
"$ref": "#/components/schemas/DatabaseName"
},
{
"description": " The name of the database to consume within the DocumentDB cluster. "
}
]
},
"CollectionName": {
"allOf": [
{
"$ref": "#/components/schemas/CollectionName"
},
{
"description": " The name of the collection to consume within the database. If you do not specify a collection, Lambda consumes all collections. "
}
]
},
"FullDocument": {
"allOf": [
{
"$ref": "#/components/schemas/FullDocument"
},
{
"description": " 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. "
}
]
}
},
"description": " Specific configuration settings for a DocumentDB event source. "
}