Class: Aws::MigrationHub::Types::Task
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHub::Types::Task
- Includes:
- Structure
- Defined in:
- 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.
988 989 990 991 992 993 994 |
# File 'lib/aws-sdk-migrationhub/types.rb', line 988 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.
988 989 990 991 992 993 994 |
# File 'lib/aws-sdk-migrationhub/types.rb', line 988 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.
988 989 990 991 992 993 994 |
# File 'lib/aws-sdk-migrationhub/types.rb', line 988 class Task < Struct.new( :status, :status_detail, :progress_percent) SENSITIVE = [] include Aws::Structure end |