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

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

Overview

This data type contains information about progress of an operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bytes_processedInteger

The current number of uncompressed object bytes processed.

Returns:

  • (Integer)


11977
11978
11979
11980
11981
11982
11983
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 11977

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

#bytes_returnedInteger

The current number of bytes of records payload data returned.

Returns:

  • (Integer)


11977
11978
11979
11980
11981
11982
11983
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 11977

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

#bytes_scannedInteger

The current number of object bytes scanned.

Returns:

  • (Integer)


11977
11978
11979
11980
11981
11982
11983
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 11977

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