Class: Aws::MigrationHub::Types::Task
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHub::Types::Task
- 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
-
#progress_percent ⇒ Integer
Indication of the percentage completion of the task.
-
#status ⇒ String
Status of the task - Not Started, In-Progress, Complete.
-
#status_detail ⇒ String
Details of task status as notified by a migration tool.
Instance Attribute Details
#progress_percent ⇒ Integer
Indication of the percentage completion of the task.
1250 1251 1252 1253 1254 1255 1256 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 1250 class Task < Struct.new( :status, :status_detail, :progress_percent) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Status of the task - Not Started, In-Progress, Complete.
1250 1251 1252 1253 1254 1255 1256 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 1250 class Task < Struct.new( :status, :status_detail, :progress_percent) SENSITIVE = [] include Aws::Structure end |
#status_detail ⇒ String
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.
1250 1251 1252 1253 1254 1255 1256 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 1250 class Task < Struct.new( :status, :status_detail, :progress_percent) SENSITIVE = [] include Aws::Structure end |