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
Specific configuration settings for a DocumentDB event source.

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();