Interface CfnDataMigration.SourceDataSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataMigration.SourceDataSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnDataMigration
@Stability(Stable)
public static interface CfnDataMigration.SourceDataSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.dms.*;
SourceDataSettingsProperty sourceDataSettingsProperty = SourceDataSettingsProperty.builder()
.cdcStartPosition("cdcStartPosition")
.cdcStartTime("cdcStartTime")
.cdcStopTime("cdcStopTime")
.slotName("slotName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataMigration.SourceDataSettingsPropertystatic final classAn implementation forCfnDataMigration.SourceDataSettingsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe property is a point in the database engine's log that defines a time where you can begin CDC.default StringThe property indicates the start time for a change data capture (CDC) operation.default StringThe property indicates the stop time for a change data capture (CDC) operation.default StringThe property sets the name of a previously created logical replication slot for a change data capture (CDC) load of the source instance.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCdcStartPosition
The property is a point in the database engine's log that defines a time where you can begin CDC.- See Also:
-
getCdcStartTime
The property indicates the start time for a change data capture (CDC) operation.The value is server time in UTC format.
- See Also:
-
getCdcStopTime
The property indicates the stop time for a change data capture (CDC) operation.The value is server time in UTC format.
- See Also:
-
getSlotName
The property sets the name of a previously created logical replication slot for a change data capture (CDC) load of the source instance.- See Also:
-
builder
-