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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataRepositoryTaskStatus.BuilderfailedCount(Long failedCount)A running total of the number of files that the task failed to process.DataRepositoryTaskStatus.BuilderlastUpdatedTime(Instant lastUpdatedTime)The time at which the task status was last updated.DataRepositoryTaskStatus.BuilderreleasedCapacity(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.DataRepositoryTaskStatus.BuildersucceededCount(Long succeededCount)A running total of the number of files that the task has successfully processed.DataRepositoryTaskStatus.BuildertotalCount(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 Detail
-
totalCount
DataRepositoryTaskStatus.Builder totalCount(Long totalCount)
The total number of files that the task will process. While a task is executing, the sum of
SucceededCountplusFailedCountmay not equalTotalCount. When the task is complete,TotalCountequals the sum ofSucceededCountplusFailedCount.- Parameters:
totalCount- The total number of files that the task will process. While a task is executing, the sum ofSucceededCountplusFailedCountmay not equalTotalCount. When the task is complete,TotalCountequals the sum ofSucceededCountplusFailedCount.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
succeededCount
DataRepositoryTaskStatus.Builder succeededCount(Long 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
DataRepositoryTaskStatus.Builder failedCount(Long 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
DataRepositoryTaskStatus.Builder lastUpdatedTime(Instant 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
DataRepositoryTaskStatus.Builder 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.
- 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.
-
-