interface DatabaseCDCProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppTest.CfnTestCasePropsMixin.DatabaseCDCProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapptest#CfnTestCasePropsMixin_DatabaseCDCProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apptest.CfnTestCasePropsMixin.DatabaseCDCProperty |
Python | aws_cdk.cfn_property_mixins.aws_apptest.CfnTestCasePropsMixin.DatabaseCDCProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apptest » 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 { aws_apptest as apptest } from '@aws-cdk/cfn-property-mixins';
const databaseCDCProperty: apptest.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