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.
1287 1288 1289 1290 1291 1292 1293 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 1287 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.
1287 1288 1289 1290 1291 1292 1293 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 1287 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.
1287 1288 1289 1290 1291 1292 1293 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 1287 class ExecutionStatistics < Struct.new( :average_execution_time_millis, :data_scanned_bytes, :work_units_executed_count) SENSITIVE = [] include Aws::Structure end |