Module Values.MigrationTaskSource

Represents a migration task in a migration tool.

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

    A name that identifies the vendor of the migration tool being used.

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

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

    *)
  3. task : Task.t option;
    (*

    Task object encapsulating task information.

    *)
  4. updateDateTime : UpdateDateTime.t option;
    (*

    The timestamp when the task was gathered.

    *)
  5. resourceAttributeList : LatestResourceAttributeList.t option;
    (*

    Information about the resource that is being migrated. This data will be used to map the task to a resource in the Application Discovery Service repository.

    *)
}
Sourceval make : ?progressUpdateStream:??? -> ?migrationTaskName:??? -> ?task:??? -> ?updateDateTime:??? -> ?resourceAttributeList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of ResourceAttributeValue.t ]) list ] list | `String of ProgressUpdateStream.t | `Structure of (string * [> `Enum of string | `Integer of ProgressPercent.t | `String of StatusDetail.t ]) list | `Timestamp of UpdateDateTime.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