Interface CfnTestCasePropsMixin.DatabaseCDCProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTestCasePropsMixin.DatabaseCDCProperty.Jsii$Proxy
- Enclosing class:
CfnTestCasePropsMixin
@Stability(Stable)
public static interface CfnTestCasePropsMixin.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.cfnpropertymixins.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTestCasePropsMixin.DatabaseCDCPropertystatic final classAn implementation forCfnTestCasePropsMixin.DatabaseCDCProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceMetadata
The source metadata of the database CDC.Returns union: either
IResolvableorCfnTestCasePropsMixin.SourceDatabaseMetadataProperty- See Also:
-
getTargetMetadata
The target metadata of the database CDC.Returns union: either
IResolvableorCfnTestCasePropsMixin.TargetDatabaseMetadataProperty- See Also:
-
builder
-