Interface CfnTestCase.DatabaseCDCProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTestCase.DatabaseCDCProperty.Jsii$Proxy
Enclosing class:
CfnTestCase

@Stability(Stable) public static interface CfnTestCase.DatabaseCDCProperty extends software.amazon.jsii.JsiiSerializable
Defines the Change Data Capture (CDC) of the database.

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.apptest.*;
 DatabaseCDCProperty databaseCDCProperty = DatabaseCDCProperty.builder()
         .sourceMetadata(SourceDatabaseMetadataProperty.builder()
                 .captureTool("captureTool")
                 .type("type")
                 .build())
         .targetMetadata(TargetDatabaseMetadataProperty.builder()
                 .captureTool("captureTool")
                 .type("type")
                 .build())
         .build();
 

See Also: