Interface DataRepositoryTaskStatus.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<DataRepositoryTaskStatus.Builder,
,DataRepositoryTaskStatus> SdkBuilder<DataRepositoryTaskStatus.Builder,
,DataRepositoryTaskStatus> SdkPojo
- Enclosing class:
DataRepositoryTaskStatus
public static interface DataRepositoryTaskStatus.Builder
extends SdkPojo, CopyableBuilder<DataRepositoryTaskStatus.Builder,DataRepositoryTaskStatus>
-
Method Summary
Modifier and TypeMethodDescriptionfailedCount
(Long failedCount) A running total of the number of files that the task failed to process.lastUpdatedTime
(Instant lastUpdatedTime) The time at which the task status was last updated.releasedCapacity
(Long 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.succeededCount
(Long succeededCount) A running total of the number of files that the task has successfully processed.totalCount
(Long totalCount) The total number of files that the task will process.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
totalCount
The total number of files that the task will process. While a task is executing, the sum of
SucceededCount
plusFailedCount
may not equalTotalCount
. When the task is complete,TotalCount
equals the sum ofSucceededCount
plusFailedCount
.- Parameters:
totalCount
- The total number of files that the task will process. While a task is executing, the sum ofSucceededCount
plusFailedCount
may not equalTotalCount
. When the task is complete,TotalCount
equals the sum ofSucceededCount
plusFailedCount
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
succeededCount
A running total of the number of files that the task has successfully processed.
- Parameters:
succeededCount
- A running total of the number of files that the task has successfully processed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedCount
A running total of the number of files that the task failed to process.
- Parameters:
failedCount
- A running total of the number of files that the task failed to process.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedTime
The time at which the task status was last updated.
- Parameters:
lastUpdatedTime
- The time at which the task status was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
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.
- Parameters:
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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-