interface DatabaseCDCProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_apptest.CfnTestCase.DatabaseCDCProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapptest#CfnTestCase_DatabaseCDCProperty |
Java | software.amazon.awscdk.services.apptest.CfnTestCase.DatabaseCDCProperty |
Python | aws_cdk.aws_apptest.CfnTestCase.DatabaseCDCProperty |
TypeScript | aws-cdk-lib » aws_apptest » CfnTestCase » DatabaseCDCProperty |
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 { aws_apptest as apptest } from 'aws-cdk-lib';
const databaseCDCProperty: apptest.CfnTestCase.DatabaseCDCProperty = {
sourceMetadata: {
captureTool: 'captureTool',
type: 'type',
},
targetMetadata: {
captureTool: 'captureTool',
type: 'type',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| source | IResolvable | Source | The source metadata of the database CDC. |
| target | IResolvable | Target | The target metadata of the database CDC. |
sourceMetadata
Type:
IResolvable | Source
The source metadata of the database CDC.
targetMetadata
Type:
IResolvable | Target
The target metadata of the database CDC.

.NET
Go
Java
Python
TypeScript