Class: Aws::S3::Types::Progress

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Instance Attribute Summary collapse

Instance Attribute Details

#bytes_processedInteger

Current number of uncompressed object bytes processed.

Returns:

  • (Integer)


5799
5800
5801
5802
5803
# File 'lib/aws-sdk-s3/types.rb', line 5799

class Progress < Struct.new(
  :bytes_scanned,
  :bytes_processed)
  include Aws::Structure
end

#bytes_scannedInteger

Current number of object bytes scanned.

Returns:

  • (Integer)


5799
5800
5801
5802
5803
# File 'lib/aws-sdk-s3/types.rb', line 5799

class Progress < Struct.new(
  :bytes_scanned,
  :bytes_processed)
  include Aws::Structure
end