Class: Aws::DataSync::Types::TaskExecutionResultDetail
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DataSync::Types::TaskExecutionResultDetail
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-datasync/types.rb
 
Overview
Provides detailed information about the result of your DataSync task execution.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #error_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An error that DataSync encountered during your task execution.
 - 
  
    
      #error_detail  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The detailed description of an error that DataSync encountered during your task execution.
 - 
  
    
      #prepare_duration  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time in milliseconds that your task execution was in the ‘PREPARING` step.
 - 
  
    
      #prepare_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of the ‘PREPARING` step for your task execution.
 - 
  
    
      #total_duration  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time in milliseconds that your task execution ran.
 - 
  
    
      #transfer_duration  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time in milliseconds that your task execution was in the ‘TRANSFERRING` step.
 - 
  
    
      #transfer_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of the ‘TRANSFERRING` step for your task execution.
 - 
  
    
      #verify_duration  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time in milliseconds that your task execution was in the ‘VERIFYING` step.
 - 
  
    
      #verify_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of the ‘VERIFYING` step for your task execution.
 
Instance Attribute Details
#error_code ⇒ String
An error that DataSync encountered during your task execution. You can use this information to help [troubleshoot issues].
[1]: docs.aws.amazon.com/datasync/latest/userguide/troubleshooting-datasync-locations-tasks.html
      5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 5715 class TaskExecutionResultDetail < Struct.new( :prepare_duration, :prepare_status, :total_duration, :transfer_duration, :transfer_status, :verify_duration, :verify_status, :error_code, :error_detail) SENSITIVE = [] include Aws::Structure end  | 
  
#error_detail ⇒ String
The detailed description of an error that DataSync encountered during your task execution. You can use this information to help [troubleshoot issues].
[1]: docs.aws.amazon.com/datasync/latest/userguide/troubleshooting-datasync-locations-tasks.html
      5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 5715 class TaskExecutionResultDetail < Struct.new( :prepare_duration, :prepare_status, :total_duration, :transfer_duration, :transfer_status, :verify_duration, :verify_status, :error_code, :error_detail) SENSITIVE = [] include Aws::Structure end  | 
  
#prepare_duration ⇒ Integer
The time in milliseconds that your task execution was in the ‘PREPARING` step. For more information, see [Task execution statuses].
For Enhanced mode tasks, the value is always ‘0`. For more information, see [How DataSync prepares your data transfer].
[1]: docs.aws.amazon.com/datasync/latest/userguide/run-task.html#understand-task-execution-statuses [2]: docs.aws.amazon.com/datasync/latest/userguide/how-datasync-transfer-works.html#how-datasync-prepares
      5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 5715 class TaskExecutionResultDetail < Struct.new( :prepare_duration, :prepare_status, :total_duration, :transfer_duration, :transfer_status, :verify_duration, :verify_status, :error_code, :error_detail) SENSITIVE = [] include Aws::Structure end  | 
  
#prepare_status ⇒ String
The status of the ‘PREPARING` step for your task execution. For more information, see [Task execution statuses].
[1]: docs.aws.amazon.com/datasync/latest/userguide/run-task.html#understand-task-execution-statuses
      5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 5715 class TaskExecutionResultDetail < Struct.new( :prepare_duration, :prepare_status, :total_duration, :transfer_duration, :transfer_status, :verify_duration, :verify_status, :error_code, :error_detail) SENSITIVE = [] include Aws::Structure end  | 
  
#total_duration ⇒ Integer
The time in milliseconds that your task execution ran.
      5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 5715 class TaskExecutionResultDetail < Struct.new( :prepare_duration, :prepare_status, :total_duration, :transfer_duration, :transfer_status, :verify_duration, :verify_status, :error_code, :error_detail) SENSITIVE = [] include Aws::Structure end  | 
  
#transfer_duration ⇒ Integer
The time in milliseconds that your task execution was in the ‘TRANSFERRING` step. For more information, see [Task execution statuses].
For Enhanced mode tasks, the value is always ‘0`. For more information, see [How DataSync transfers your data].
[1]: docs.aws.amazon.com/datasync/latest/userguide/run-task.html#understand-task-execution-statuses [2]: docs.aws.amazon.com/datasync/latest/userguide/how-datasync-transfer-works.html#how-datasync-transfers
      5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 5715 class TaskExecutionResultDetail < Struct.new( :prepare_duration, :prepare_status, :total_duration, :transfer_duration, :transfer_status, :verify_duration, :verify_status, :error_code, :error_detail) SENSITIVE = [] include Aws::Structure end  | 
  
#transfer_status ⇒ String
The status of the ‘TRANSFERRING` step for your task execution. For more information, see [Task execution statuses].
[1]: docs.aws.amazon.com/datasync/latest/userguide/run-task.html#understand-task-execution-statuses
      5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 5715 class TaskExecutionResultDetail < Struct.new( :prepare_duration, :prepare_status, :total_duration, :transfer_duration, :transfer_status, :verify_duration, :verify_status, :error_code, :error_detail) SENSITIVE = [] include Aws::Structure end  | 
  
#verify_duration ⇒ Integer
The time in milliseconds that your task execution was in the ‘VERIFYING` step. For more information, see [Task execution statuses].
For Enhanced mode tasks, the value is always ‘0`. For more information, see [How DataSync verifies your data’s integrity].
[1]: docs.aws.amazon.com/datasync/latest/userguide/run-task.html#understand-task-execution-statuses [2]: docs.aws.amazon.com/datasync/latest/userguide/how-datasync-transfer-works.html#how-verifying-works
      5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 5715 class TaskExecutionResultDetail < Struct.new( :prepare_duration, :prepare_status, :total_duration, :transfer_duration, :transfer_status, :verify_duration, :verify_status, :error_code, :error_detail) SENSITIVE = [] include Aws::Structure end  | 
  
#verify_status ⇒ String
The status of the ‘VERIFYING` step for your task execution. For more information, see [Task execution statuses].
[1]: docs.aws.amazon.com/datasync/latest/userguide/run-task.html#understand-task-execution-statuses
      5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727  | 
    
      # File 'lib/aws-sdk-datasync/types.rb', line 5715 class TaskExecutionResultDetail < Struct.new( :prepare_duration, :prepare_status, :total_duration, :transfer_duration, :transfer_status, :verify_duration, :verify_status, :error_code, :error_detail) SENSITIVE = [] include Aws::Structure end  |