interface SourceDataSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DMS.Mixins.CfnDataMigrationPropsMixin.SourceDataSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdms/mixins#CfnDataMigrationPropsMixin_SourceDataSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.dms.mixins.CfnDataMigrationPropsMixin.SourceDataSettingsProperty |
Python | aws_cdk.mixins_preview.aws_dms.mixins.CfnDataMigrationPropsMixin.SourceDataSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dms » mixins » CfnDataMigrationPropsMixin » SourceDataSettingsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as dms_mixins } from '@aws-cdk/mixins-preview/aws-dms';
const sourceDataSettingsProperty: dms_mixins.CfnDataMigrationPropsMixin.SourceDataSettingsProperty = {
cdcStartPosition: 'cdcStartPosition',
cdcStartTime: 'cdcStartTime',
cdcStopTime: 'cdcStopTime',
slotName: 'slotName',
};
Properties
| Name | Type | Description |
|---|---|---|
| cdc | string | The property is a point in the database engine's log that defines a time where you can begin CDC. |
| cdc | string | The property indicates the start time for a change data capture (CDC) operation. |
| cdc | string | The property indicates the stop time for a change data capture (CDC) operation. |
| slot | string | The property sets the name of a previously created logical replication slot for a change data capture (CDC) load of the source instance. |
cdcStartPosition?
Type:
string
(optional)
The property is a point in the database engine's log that defines a time where you can begin CDC.
cdcStartTime?
Type:
string
(optional)
The property indicates the start time for a change data capture (CDC) operation.
The value is server time in UTC format.
cdcStopTime?
Type:
string
(optional)
The property indicates the stop time for a change data capture (CDC) operation.
The value is server time in UTC format.
slotName?
Type:
string
(optional)
The property sets the name of a previously created logical replication slot for a change data capture (CDC) load of the source instance.

.NET
Go
Java
Python
TypeScript