Module Values.ImportMigrationTaskRequestSource

Registers a new migration task which represents a server, database, etc., being migrated to AWS by a migration tool. This API is a prerequisite to calling the NotifyMigrationTaskState API as the migration tool must first register the migration task with Migration Hub.

Sourcetype nonrec t = {
  1. progressUpdateStream : ProgressUpdateStream.t;
    (*

    The name of the ProgressUpdateStream. >

    *)
  2. migrationTaskName : MigrationTaskName.t;
    (*

    Unique identifier that references the migration task. Do not store personal data in this field.

    *)
  3. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?dryRun:??? -> progressUpdateStream:ProgressUpdateStream.t -> migrationTaskName:MigrationTaskName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of DryRun.t | `String of ProgressUpdateStream.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t