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

Inherits:
Struct
  • Object
show all
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

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)


4478
4479
4480
4481
4482
4483
4484
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 4478

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)


4478
4479
4480
4481
4482
4483
4484
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 4478

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)


4478
4479
4480
4481
4482
4483
4484
# File 'gems/aws-sdk-cloudtrail/lib/aws-sdk-cloudtrail/types.rb', line 4478

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