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

The current number of uncompressed object bytes processed.

Returns:

  • (Integer)


6356
6357
6358
6359
6360
6361
# File 'lib/aws-sdk-s3/types.rb', line 6356

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

#bytes_returnedInteger

The current number of bytes of records payload data returned.

Returns:

  • (Integer)


6356
6357
6358
6359
6360
6361
# File 'lib/aws-sdk-s3/types.rb', line 6356

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

#bytes_scannedInteger

The current number of object bytes scanned.

Returns:

  • (Integer)


6356
6357
6358
6359
6360
6361
# File 'lib/aws-sdk-s3/types.rb', line 6356

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