Class: Aws::CloudTrail::Types::QueryStatistics
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::QueryStatistics
- Defined in:
- gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb
Overview
Metadata about a query, such as the number of results.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bytes_scanned ⇒ Integer
The total bytes that the query scanned in the event data store.
-
#results_count ⇒ Integer
The number of results returned.
-
#total_results_count ⇒ Integer
The total number of results returned by a query.
Instance Attribute Details
#bytes_scanned ⇒ Integer
The total bytes that the query scanned in the event data store. This value matches the number of bytes for which your account is billed for the query, unless the query is still running.
4238 4239 4240 4241 4242 4243 4244 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 4238 class QueryStatistics < Struct.new( :results_count, :total_results_count, :bytes_scanned) SENSITIVE = [] include Aws::Structure end |
#results_count ⇒ Integer
The number of results returned.
4238 4239 4240 4241 4242 4243 4244 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 4238 class QueryStatistics < Struct.new( :results_count, :total_results_count, :bytes_scanned) SENSITIVE = [] include Aws::Structure end |
#total_results_count ⇒ Integer
The total number of results returned by a query.
4238 4239 4240 4241 4242 4243 4244 |
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 4238 class QueryStatistics < Struct.new( :results_count, :total_results_count, :bytes_scanned) SENSITIVE = [] include Aws::Structure end |