Class CfnTestCasePropsMixin.DatabaseCDCProperty
Defines the Change Data Capture (CDC) of the database.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppTest
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTestCasePropsMixin.DatabaseCDCProperty : CfnTestCasePropsMixin.IDatabaseCDCProperty
Syntax (vb)
Public Class CfnTestCasePropsMixin.DatabaseCDCProperty Implements CfnTestCasePropsMixin.IDatabaseCDCProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AppTest;
var databaseCDCProperty = new DatabaseCDCProperty {
SourceMetadata = new SourceDatabaseMetadataProperty {
CaptureTool = "captureTool",
Type = "type"
},
TargetMetadata = new TargetDatabaseMetadataProperty {
CaptureTool = "captureTool",
Type = "type"
}
};
Synopsis
Constructors
| DatabaseCDCProperty() | Defines the Change Data Capture (CDC) of the database. |
Properties
| SourceMetadata | The source metadata of the database CDC. |
| TargetMetadata | The target metadata of the database CDC. |
Constructors
DatabaseCDCProperty()
Defines the Change Data Capture (CDC) of the database.
public DatabaseCDCProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AppTest;
var databaseCDCProperty = new DatabaseCDCProperty {
SourceMetadata = new SourceDatabaseMetadataProperty {
CaptureTool = "captureTool",
Type = "type"
},
TargetMetadata = new TargetDatabaseMetadataProperty {
CaptureTool = "captureTool",
Type = "type"
}
};
Properties
SourceMetadata
The source metadata of the database CDC.
public object? SourceMetadata { get; set; }
Property Value
Remarks
TargetMetadata
The target metadata of the database CDC.
public object? TargetMetadata { get; set; }