Values.CreateDataMigrationMessageSourceCreates a data migration using the provided settings.
type nonrec t = {dataMigrationName : String_.t option;A user-friendly name for the data migration. Data migration names have the following constraints: Must begin with a letter, and can only contain ASCII letters, digits, and hyphens. Can't end with a hyphen or contain two consecutive hyphens. Length must be from 1 to 255 characters.
*)migrationProjectIdentifier : String_.t;An identifier for the migration project.
*)dataMigrationType : MigrationTypeValue.t;Specifies if the data migration is full-load only, change data capture (CDC) only, or full-load and CDC.
*)serviceAccessRoleArn : String_.t;The Amazon Resource Name (ARN) for the service access role that you want to use to create the data migration.
*)enableCloudwatchLogs : BooleanOptional.t option;Specifies whether to enable CloudWatch logs for the data migration.
*)sourceDataSettings : SourceDataSettings.t option;Specifies information about the source data provider.
*)targetDataSettings : TargetDataSettings.t option;Specifies information about the target data provider.
*)numberOfJobs : IntegerOptional.t option;The number of parallel jobs that trigger parallel threads to unload the tables from the source, and then load them to the target.
*)selectionRules : SecretString.t option;An optional JSON string specifying what tables, views, and schemas to include or exclude from the migration.
*)}val make :
?dataMigrationName:??? ->
?enableCloudwatchLogs:??? ->
?sourceDataSettings:??? ->
?targetDataSettings:??? ->
?numberOfJobs:??? ->
?tags:??? ->
?selectionRules:??? ->
migrationProjectIdentifier:String_.t ->
dataMigrationType:MigrationTypeValue.t ->
serviceAccessRoleArn:String_.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanOptional.t
| `Enum of string
| `Integer of IntegerOptional.t
| `List of
[> `Structure of
(string
* [> `Enum of string
| `String of String_.t
| `Timestamp of Iso8601DateTime.t ])
list ]
list
| `String of String_.t ])
list ]