Class: Aws::Athena::Types::QueryExecutionStatistics

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-athena/types.rb

Overview

The amount of data scanned during the query execution and the amount of time that it took to execute, and the type of statement that was run.

Instance Attribute Summary collapse

Instance Attribute Details

#data_scanned_in_bytesInteger

The number of bytes in the data that was queried.

Returns:

  • (Integer)


834
835
836
837
838
# File 'lib/aws-sdk-athena/types.rb', line 834

class QueryExecutionStatistics < Struct.new(
  :engine_execution_time_in_millis,
  :data_scanned_in_bytes)
  include Aws::Structure
end

#engine_execution_time_in_millisInteger

The number of milliseconds that the query took to execute.

Returns:

  • (Integer)


834
835
836
837
838
# File 'lib/aws-sdk-athena/types.rb', line 834

class QueryExecutionStatistics < Struct.new(
  :engine_execution_time_in_millis,
  :data_scanned_in_bytes)
  include Aws::Structure
end