Class: Aws::S3::Types::Stats
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Stats
- Defined in:
- gems/aws-sdk-s3/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.
16858 16859 16860 16861 16862 16863 16864 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 16858 class Stats < Struct.new( :bytes_scanned, :bytes_processed, :bytes_returned) SENSITIVE = [] include Aws::Structure end |
#bytes_returned ⇒ Integer
The total number of bytes of records payload data returned.
16858 16859 16860 16861 16862 16863 16864 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 16858 class Stats < Struct.new( :bytes_scanned, :bytes_processed, :bytes_returned) SENSITIVE = [] include Aws::Structure end |