Class: Aws::Athena::Types::ExecutorsSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::ExecutorsSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
Contains summary information about an executor.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#executor_id ⇒ String
The UUID of the executor.
-
#executor_size ⇒ Integer
The smallest unit of compute that a session can request from Athena.
-
#executor_state ⇒ String
The processing state of the executor.
-
#executor_type ⇒ String
The type of executor used for the application (‘COORDINATOR`, `GATEWAY`, or `WORKER`).
-
#start_date_time ⇒ Integer
The date and time that the executor started.
-
#termination_date_time ⇒ Integer
The date and time that the executor was terminated.
Instance Attribute Details
#executor_id ⇒ String
The UUID of the executor.
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 |
# File 'lib/aws-sdk-athena/types.rb', line 1302 class ExecutorsSummary < Struct.new( :executor_id, :executor_type, :start_date_time, :termination_date_time, :executor_state, :executor_size) SENSITIVE = [] include Aws::Structure end |
#executor_size ⇒ Integer
The smallest unit of compute that a session can request from Athena. Size is measured in data processing unit (DPU) values, a relative measure of processing power.
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 |
# File 'lib/aws-sdk-athena/types.rb', line 1302 class ExecutorsSummary < Struct.new( :executor_id, :executor_type, :start_date_time, :termination_date_time, :executor_state, :executor_size) SENSITIVE = [] include Aws::Structure end |
#executor_state ⇒ String
The processing state of the executor. A description of each state follows.
‘CREATING` - The executor is being started, including acquiring resources.
‘CREATED` - The executor has been started.
‘REGISTERED` - The executor has been registered.
‘TERMINATING` - The executor is in the process of shutting down.
‘TERMINATED` - The executor is no longer running.
‘FAILED` - Due to a failure, the executor is no longer running.
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 |
# File 'lib/aws-sdk-athena/types.rb', line 1302 class ExecutorsSummary < Struct.new( :executor_id, :executor_type, :start_date_time, :termination_date_time, :executor_state, :executor_size) SENSITIVE = [] include Aws::Structure end |
#executor_type ⇒ String
The type of executor used for the application (‘COORDINATOR`, `GATEWAY`, or `WORKER`).
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 |
# File 'lib/aws-sdk-athena/types.rb', line 1302 class ExecutorsSummary < Struct.new( :executor_id, :executor_type, :start_date_time, :termination_date_time, :executor_state, :executor_size) SENSITIVE = [] include Aws::Structure end |
#start_date_time ⇒ Integer
The date and time that the executor started.
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 |
# File 'lib/aws-sdk-athena/types.rb', line 1302 class ExecutorsSummary < Struct.new( :executor_id, :executor_type, :start_date_time, :termination_date_time, :executor_state, :executor_size) SENSITIVE = [] include Aws::Structure end |
#termination_date_time ⇒ Integer
The date and time that the executor was terminated.
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 |
# File 'lib/aws-sdk-athena/types.rb', line 1302 class ExecutorsSummary < Struct.new( :executor_id, :executor_type, :start_date_time, :termination_date_time, :executor_state, :executor_size) SENSITIVE = [] include Aws::Structure end |