Values.NotifyMigrationTaskStateRequestSourceNotifies Migration Hub of the current status, progress, or other detail regarding a migration task. This API has the following traits: Migration tools will call the NotifyMigrationTaskState API to share the latest progress and status. MigrationTaskName is used for addressing updates to the correct target. ProgressUpdateStream is used for access control and to provide a namespace for each migration tool.
type nonrec t = {progressUpdateStream : ProgressUpdateStream.t;The name of the ProgressUpdateStream.
*)migrationTaskName : MigrationTaskName.t;Unique identifier that references the migration task. Do not store personal data in this field.
*)task : Task.t;Information about the task's progress and status.
*)updateDateTime : UpdateDateTime.t;The timestamp when the task was gathered.
*)nextUpdateSeconds : NextUpdateSeconds.t;Number of seconds after the UpdateDateTime within which the Migration Hub can expect an update. If Migration Hub does not receive an update within the specified interval, then the migration task will be considered stale.
*)dryRun : DryRun.t option;Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call.
*)}val make :
?dryRun:??? ->
progressUpdateStream:ProgressUpdateStream.t ->
migrationTaskName:MigrationTaskName.t ->
task:Task.t ->
updateDateTime:UpdateDateTime.t ->
nextUpdateSeconds:NextUpdateSeconds.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of DryRun.t
| `Integer of NextUpdateSeconds.t
| `String of ProgressUpdateStream.t
| `Structure of
(string
* [> `Enum of string
| `Integer of ProgressPercent.t
| `String of StatusDetail.t ])
list
| `Timestamp of UpdateDateTime.t ])
list ]