Class: Aws::CloudTrail::Types::QueryStatistics

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#bytes_scannedInteger

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.

Returns:

  • (Integer)


4084
4085
4086
4087
4088
4089
4090
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4084

class QueryStatistics < Struct.new(
  :results_count,
  :total_results_count,
  :bytes_scanned)
  SENSITIVE = []
  include Aws::Structure
end

#results_countInteger

The number of results returned.

Returns:

  • (Integer)


4084
4085
4086
4087
4088
4089
4090
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4084

class QueryStatistics < Struct.new(
  :results_count,
  :total_results_count,
  :bytes_scanned)
  SENSITIVE = []
  include Aws::Structure
end

#total_results_countInteger

The total number of results returned by a query.

Returns:

  • (Integer)


4084
4085
4086
4087
4088
4089
4090
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4084

class QueryStatistics < Struct.new(
  :results_count,
  :total_results_count,
  :bytes_scanned)
  SENSITIVE = []
  include Aws::Structure
end