Interface CfnEventSourceMapping.DocumentDBEventSourceConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventSourceMapping.DocumentDBEventSourceConfigProperty.Jsii$Proxy
- Enclosing class:
CfnEventSourceMapping
@Stability(Stable)
public static interface CfnEventSourceMapping.DocumentDBEventSourceConfigProperty
extends software.amazon.jsii.JsiiSerializable
Document db event source config.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.lambda.*;
DocumentDBEventSourceConfigProperty documentDBEventSourceConfigProperty = DocumentDBEventSourceConfigProperty.builder()
.collectionName("collectionName")
.databaseName("databaseName")
.fullDocument("fullDocument")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEventSourceMapping.DocumentDBEventSourceConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCollectionName
The collection name to connect to.- See Also:
-
getDatabaseName
The database name to connect to.- See Also:
-
getFullDocument
Include full document in change stream response.The default option will only send the changes made to documents to Lambda. If you want the complete document sent to Lambda, set this to UpdateLookup.
- See Also:
-
builder
@Stability(Stable) static CfnEventSourceMapping.DocumentDBEventSourceConfigProperty.Builder builder()
-