Class: Aws::FSx::Types::DataRepositoryTaskStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::DataRepositoryTaskStatus
- Defined in:
- gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failed_count ⇒ Integer
A running total of the number of files that the task failed to process.
-
#last_updated_time ⇒ Time
The time at which the task status was last updated.
-
#released_capacity ⇒ Integer
The total amount of data, in GiB, released by an Amazon File Cache AUTO_RELEASE_DATA task that automatically releases files from the cache.
-
#succeeded_count ⇒ Integer
A running total of the number of files that the task has successfully processed.
-
#total_count ⇒ Integer
The total number of files that the task will process.
Instance Attribute Details
#failed_count ⇒ Integer
A running total of the number of files that the task failed to process.
4382 4383 4384 4385 4386 4387 4388 4389 4390 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4382 class DataRepositoryTaskStatus < Struct.new( :total_count, :succeeded_count, :failed_count, :last_updated_time, :released_capacity) SENSITIVE = [] include Aws::Structure end |
#last_updated_time ⇒ Time
The time at which the task status was last updated.
4382 4383 4384 4385 4386 4387 4388 4389 4390 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4382 class DataRepositoryTaskStatus < Struct.new( :total_count, :succeeded_count, :failed_count, :last_updated_time, :released_capacity) SENSITIVE = [] include Aws::Structure end |
#released_capacity ⇒ Integer
The total amount of data, in GiB, released by an Amazon File Cache AUTO_RELEASE_DATA task that automatically releases files from the cache.
4382 4383 4384 4385 4386 4387 4388 4389 4390 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4382 class DataRepositoryTaskStatus < Struct.new( :total_count, :succeeded_count, :failed_count, :last_updated_time, :released_capacity) SENSITIVE = [] include Aws::Structure end |
#succeeded_count ⇒ Integer
A running total of the number of files that the task has successfully processed.
4382 4383 4384 4385 4386 4387 4388 4389 4390 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4382 class DataRepositoryTaskStatus < Struct.new( :total_count, :succeeded_count, :failed_count, :last_updated_time, :released_capacity) SENSITIVE = [] include Aws::Structure end |
#total_count ⇒ Integer
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.
4382 4383 4384 4385 4386 4387 4388 4389 4390 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4382 class DataRepositoryTaskStatus < Struct.new( :total_count, :succeeded_count, :failed_count, :last_updated_time, :released_capacity) SENSITIVE = [] include Aws::Structure end |