Struct aws_sdk_fsx::types::DataRepositoryTaskStatus
source · #[non_exhaustive]pub struct DataRepositoryTaskStatus { /* private fields */ }Expand description
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.
Implementations§
source§impl DataRepositoryTaskStatus
impl DataRepositoryTaskStatus
sourcepub fn total_count(&self) -> Option<i64>
pub fn total_count(&self) -> Option<i64>
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.
sourcepub fn succeeded_count(&self) -> Option<i64>
pub fn succeeded_count(&self) -> Option<i64>
A running total of the number of files that the task has successfully processed.
sourcepub fn failed_count(&self) -> Option<i64>
pub fn failed_count(&self) -> Option<i64>
A running total of the number of files that the task failed to process.
sourcepub fn last_updated_time(&self) -> Option<&DateTime>
pub fn last_updated_time(&self) -> Option<&DateTime>
The time at which the task status was last updated.
sourcepub fn released_capacity(&self) -> Option<i64>
pub fn released_capacity(&self) -> Option<i64>
The total amount of data, in GiB, released by an Amazon File Cache AUTO_RELEASE_DATA task that automatically releases files from the cache.
source§impl DataRepositoryTaskStatus
impl DataRepositoryTaskStatus
sourcepub fn builder() -> DataRepositoryTaskStatusBuilder
pub fn builder() -> DataRepositoryTaskStatusBuilder
Creates a new builder-style object to manufacture DataRepositoryTaskStatus.
Trait Implementations§
source§impl Clone for DataRepositoryTaskStatus
impl Clone for DataRepositoryTaskStatus
source§fn clone(&self) -> DataRepositoryTaskStatus
fn clone(&self) -> DataRepositoryTaskStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DataRepositoryTaskStatus
impl Debug for DataRepositoryTaskStatus
source§impl PartialEq<DataRepositoryTaskStatus> for DataRepositoryTaskStatus
impl PartialEq<DataRepositoryTaskStatus> for DataRepositoryTaskStatus
source§fn eq(&self, other: &DataRepositoryTaskStatus) -> bool
fn eq(&self, other: &DataRepositoryTaskStatus) -> bool
self and other values to be equal, and is used
by ==.