Class: Aws::S3::Types::Progress
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Progress
- Includes:
- Aws::Structure
- Defined in:
- 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
-
#bytes_processed ⇒ Integer
The current number of uncompressed object bytes processed.
-
#bytes_returned ⇒ Integer
The current number of bytes of records payload data returned.
-
#bytes_scanned ⇒ Integer
The current number of object bytes scanned.
Instance Attribute Details
#bytes_processed ⇒ Integer
The current number of uncompressed object bytes processed.
13120 13121 13122 13123 13124 13125 13126 |
# File 'lib/aws-sdk-s3/types.rb', line 13120 class Progress < Struct.new( :bytes_scanned, :bytes_processed, :bytes_returned) SENSITIVE = [] include Aws::Structure end |