Class: Aws::Lambda::Types::DocumentDBEventSourceConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::DocumentDBEventSourceConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Specific configuration settings for a DocumentDB event source.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#collection_name ⇒ String
The name of the collection to consume within the database.
-
#database_name ⇒ String
The name of the database to consume within the DocumentDB cluster.
-
#full_document ⇒ String
Determines what DocumentDB sends to your event stream during document update operations.
Instance Attribute Details
#collection_name ⇒ String
The name of the collection to consume within the database. If you do not specify a collection, Lambda consumes all collections.
1602 1603 1604 1605 1606 1607 1608 |
# File 'lib/aws-sdk-lambda/types.rb', line 1602 class DocumentDBEventSourceConfig < Struct.new( :database_name, :collection_name, :full_document) SENSITIVE = [] include Aws::Structure end |
#database_name ⇒ String
The name of the database to consume within the DocumentDB cluster.
1602 1603 1604 1605 1606 1607 1608 |
# File 'lib/aws-sdk-lambda/types.rb', line 1602 class DocumentDBEventSourceConfig < Struct.new( :database_name, :collection_name, :full_document) SENSITIVE = [] include Aws::Structure end |
#full_document ⇒ String
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.
1602 1603 1604 1605 1606 1607 1608 |
# File 'lib/aws-sdk-lambda/types.rb', line 1602 class DocumentDBEventSourceConfig < Struct.new( :database_name, :collection_name, :full_document) SENSITIVE = [] include Aws::Structure end |