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
Note:
When making an API call, you may pass Task data as a hash:
{
status: "NOT_STARTED", # required, accepts NOT_STARTED, IN_PROGRESS, FAILED, COMPLETED
status_detail: "StatusDetail",
progress_percent: 1,
}
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.
1194 1195 1196 1197 1198 1199 1200 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 1194 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.
1194 1195 1196 1197 1198 1199 1200 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 1194 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.
1194 1195 1196 1197 1198 1199 1200 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 1194 class Task < Struct.new( :status, :status_detail, :progress_percent) SENSITIVE = [] include Aws::Structure end |