You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MigrationHub::Types::Task

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Task as input to an Aws::Client method, you can use a vanilla Hash:

{
  status: "NOT_STARTED", # required, accepts NOT_STARTED, IN_PROGRESS, FAILED, COMPLETED
  status_detail: "StatusDetail",
  progress_percent: 1,
}

Task object encapsulating task information.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#progress_percentInteger

Indication of the percentage completion of the task.

Returns:

  • (Integer)

    Indication of the percentage completion of the task.

#statusString

Status of the task - Not Started, In-Progress, Complete.

Possible values:

  • NOT_STARTED
  • IN_PROGRESS
  • FAILED
  • COMPLETED

Returns:

  • (String)

    Status of the task - Not Started, In-Progress, Complete.

#status_detailString

Details of task status as notified by a migration tool. A tool might use this field to provide clarifying information about the status that is unique to that tool or that explains an error state.

Returns:

  • (String)

    Details of task status as notified by a migration tool.