Class: Aws::Lambda::Types::DocumentDBEventSourceConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb

Overview

Specific configuration settings for a DocumentDB event source.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#collection_nameString

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

Returns:

  • (String)


1555
1556
1557
1558
1559
1560
1561
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1555

class DocumentDBEventSourceConfig < Struct.new(
  :database_name,
  :collection_name,
  :full_document)
  SENSITIVE = []
  include Aws::Structure
end

#database_nameString

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

Returns:

  • (String)


1555
1556
1557
1558
1559
1560
1561
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1555

class DocumentDBEventSourceConfig < Struct.new(
  :database_name,
  :collection_name,
  :full_document)
  SENSITIVE = []
  include Aws::Structure
end

#full_documentString

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.

Returns:

  • (String)


1555
1556
1557
1558
1559
1560
1561
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1555

class DocumentDBEventSourceConfig < Struct.new(
  :database_name,
  :collection_name,
  :full_document)
  SENSITIVE = []
  include Aws::Structure
end