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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb

Overview

Task object encapsulating task information.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#progress_percentInteger

Indication of the percentage completion of the task.

Returns:

  • (Integer)


988
989
990
991
992
993
994
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 988

class Task < Struct.new(
  :status,
  :status_detail,
  :progress_percent)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

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

Returns:

  • (String)


988
989
990
991
992
993
994
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 988

class Task < Struct.new(
  :status,
  :status_detail,
  :progress_percent)
  SENSITIVE = []
  include Aws::Structure
end

#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)


988
989
990
991
992
993
994
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 988

class Task < Struct.new(
  :status,
  :status_detail,
  :progress_percent)
  SENSITIVE = []
  include Aws::Structure
end