Class: Aws::S3::Types::Stats
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Stats
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Instance Attribute Summary collapse
-
#bytes_processed ⇒ Integer
The total number of uncompressed object bytes processed.
-
#bytes_returned ⇒ Integer
The total number of bytes of records payload data returned.
-
#bytes_scanned ⇒ Integer
The total number of object bytes scanned.
Instance Attribute Details
#bytes_processed ⇒ Integer
The total number of uncompressed object bytes processed.
9444 9445 9446 9447 9448 9449 |
# File 'lib/aws-sdk-s3/types.rb', line 9444 class Stats < Struct.new( :bytes_scanned, :bytes_processed, :bytes_returned) include Aws::Structure end |