DocumentDBEventSourceConfig — AWS SDK for Ruby V3 (original) (raw)
Class: Aws::Lambda::Types::DocumentDBEventSourceConfig
Inherits:
Struct
- Object
- Struct
- Aws::Lambda::Types::DocumentDBEventSourceConfig show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Specific configuration settings for a DocumentDB event source.
Constant Summarycollapse
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.
1623 1624 1625 1626 1627 1628 1629 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1623 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.
1623 1624 1625 1626 1627 1628 1629 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1623 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.
1623 1624 1625 1626 1627 1628 1629 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1623 class DocumentDBEventSourceConfig < Struct.new( :database_name, :collection_name, :full_document) SENSITIVE = [] include Aws::Structure end |
---|