interface DatabaseCDCProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins.CfnTestCasePropsMixin.DatabaseCDCProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapptest/mixins#CfnTestCasePropsMixin_DatabaseCDCProperty |
Java | software.amazon.awscdk.mixins.preview.services.apptest.mixins.CfnTestCasePropsMixin.DatabaseCDCProperty |
Python | aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCasePropsMixin.DatabaseCDCProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apptest » mixins » CfnTestCasePropsMixin » 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 { mixins as apptest_mixins } from '@aws-cdk/mixins-preview/aws-apptest';
const databaseCDCProperty: apptest_mixins.CfnTestCasePropsMixin.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
(optional)
The source metadata of the database CDC.
targetMetadata?
Type:
IResolvable | Target
(optional)
The target metadata of the database CDC.

.NET
Go
Java
Python
TypeScript