Class: Aws::LakeFormation::Types::ExecutionStatistics
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::ExecutionStatistics
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lakeformation/types.rb
Overview
Statistics related to the processing of a query statement.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#average_execution_time_millis ⇒ Integer
The average time the request took to be executed.
-
#data_scanned_bytes ⇒ Integer
The amount of data that was scanned in bytes.
-
#work_units_executed_count ⇒ Integer
The number of work units executed.
Instance Attribute Details
#average_execution_time_millis ⇒ Integer
The average time the request took to be executed.
1235 1236 1237 1238 1239 1240 1241 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 1235 class ExecutionStatistics < Struct.new( :average_execution_time_millis, :data_scanned_bytes, :work_units_executed_count) SENSITIVE = [] include Aws::Structure end |
#data_scanned_bytes ⇒ Integer
The amount of data that was scanned in bytes.
1235 1236 1237 1238 1239 1240 1241 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 1235 class ExecutionStatistics < Struct.new( :average_execution_time_millis, :data_scanned_bytes, :work_units_executed_count) SENSITIVE = [] include Aws::Structure end |
#work_units_executed_count ⇒ Integer
The number of work units executed.
1235 1236 1237 1238 1239 1240 1241 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 1235 class ExecutionStatistics < Struct.new( :average_execution_time_millis, :data_scanned_bytes, :work_units_executed_count) SENSITIVE = [] include Aws::Structure end |