Class DataRepositoryTaskStatus
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.
public class DataRepositoryTaskStatus
- Inheritance
-
DataRepositoryTaskStatus
- Inherited Members
Constructors
DataRepositoryTaskStatus()
public DataRepositoryTaskStatus()
Properties
FailedCount
Gets and sets the property FailedCount.
A running total of the number of files that the task failed to process.
public long FailedCount { get; set; }
Property Value
LastUpdatedTime
Gets and sets the property LastUpdatedTime.
The time at which the task status was last updated.
public DateTime LastUpdatedTime { get; set; }
Property Value
ReleasedCapacity
Gets and sets the property ReleasedCapacity.
The total amount of data, in GiB, released by an Amazon File Cache AUTO_RELEASE_DATA task that automatically releases files from the cache.
public long ReleasedCapacity { get; set; }
Property Value
SucceededCount
Gets and sets the property SucceededCount.
A running total of the number of files that the task has successfully processed.
public long SucceededCount { get; set; }
Property Value
TotalCount
Gets and sets the property TotalCount.
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
.
public long TotalCount { get; set; }