You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::FSx::Types::DataRepositoryTaskStatus

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Provides the task status showing a running total of the total number of files to be processed, the number successfully processed, and the number of files the task failed to process.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#failed_countInteger

A running total of the number of files that the task failed to process.

Returns:

  • (Integer)

    A running total of the number of files that the task failed to process.

#last_updated_timeTime

The time at which the task status was last updated.

Returns:

  • (Time)

    The time at which the task status was last updated.

#succeeded_countInteger

A running total of the number of files that the task has successfully processed.

Returns:

  • (Integer)

    A running total of the number of files that the task has successfully processed.

#total_countInteger

The total number of files that the task will process. While a task is executing, the sum of SucceededCount plus FailedCount may not equal TotalCount. When the task is complete, TotalCount equals the sum of SucceededCount plus FailedCount.

Returns:

  • (Integer)

    The total number of files that the task will process.