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
Container for the stats details.
Constant Summary collapse
- SENSITIVE =
[]
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.
16625 16626 16627 16628 16629 16630 16631 |
# File 'lib/aws-sdk-s3/types.rb', line 16625 class Stats < Struct.new( :bytes_scanned, :bytes_processed, :bytes_returned) SENSITIVE = [] include Aws::Structure end |