Module Values.MigrationTaskSummarySource

MigrationTaskSummary includes MigrationTaskName, ProgressPercent, ProgressUpdateStream, Status, and UpdateDateTime for each task.

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

    An AWS resource used for access control. It should uniquely identify the migration tool as it is used for all updates made by the tool.

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

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

    *)
  3. status : Status.t option;
    (*

    Status of the task.

    *)
  4. progressPercent : ProgressPercent.t option;
    (*

    Indication of the percentage completion of the task.

    *)
  5. statusDetail : StatusDetail.t option;
    (*

    Detail information of what is being done within the overall status state.

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

    The timestamp when the task was gathered.

    *)
}
Sourceval make : ?progressUpdateStream:??? -> ?migrationTaskName:??? -> ?status:??? -> ?progressPercent:??? -> ?statusDetail:??? -> ?updateDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of ProgressPercent.t | `String of ProgressUpdateStream.t | `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