Class: Aws::FSx::Types::DataRepositoryTaskStatus

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#failed_countInteger

A running total of the number of files that the task failed to process.

Returns:

  • (Integer)


4072
4073
4074
4075
4076
4077
4078
4079
4080
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4072

class DataRepositoryTaskStatus < Struct.new(
  :total_count,
  :succeeded_count,
  :failed_count,
  :last_updated_time,
  :released_capacity)
  SENSITIVE = []
  include Aws::Structure
end

#last_updated_timeTime

The time at which the task status was last updated.

Returns:

  • (Time)


4072
4073
4074
4075
4076
4077
4078
4079
4080
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4072

class DataRepositoryTaskStatus < Struct.new(
  :total_count,
  :succeeded_count,
  :failed_count,
  :last_updated_time,
  :released_capacity)
  SENSITIVE = []
  include Aws::Structure
end

#released_capacityInteger

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:

  • (Integer)


4072
4073
4074
4075
4076
4077
4078
4079
4080
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4072

class DataRepositoryTaskStatus < Struct.new(
  :total_count,
  :succeeded_count,
  :failed_count,
  :last_updated_time,
  :released_capacity)
  SENSITIVE = []
  include Aws::Structure
end

#succeeded_countInteger

A running total of the number of files that the task has successfully processed.

Returns:

  • (Integer)


4072
4073
4074
4075
4076
4077
4078
4079
4080
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4072

class DataRepositoryTaskStatus < Struct.new(
  :total_count,
  :succeeded_count,
  :failed_count,
  :last_updated_time,
  :released_capacity)
  SENSITIVE = []
  include Aws::Structure
end

#total_countInteger

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.

Returns:

  • (Integer)


4072
4073
4074
4075
4076
4077
4078
4079
4080
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 4072

class DataRepositoryTaskStatus < Struct.new(
  :total_count,
  :succeeded_count,
  :failed_count,
  :last_updated_time,
  :released_capacity)
  SENSITIVE = []
  include Aws::Structure
end