Class: Aws::Athena::Types::CalculationStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::CalculationStatus
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Contains information about the status of a notebook calculation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#completion_date_time ⇒ Time
The date and time the calculation completed processing.
-
#state ⇒ String
The state of the calculation execution.
-
#state_change_reason ⇒ String
The reason for the calculation state change (for example, the calculation was canceled because the session was terminated).
-
#submission_date_time ⇒ Time
The date and time the calculation was submitted for processing.
Instance Attribute Details
#completion_date_time ⇒ Time
The date and time the calculation completed processing.
318 319 320 321 322 323 324 325 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 318 class CalculationStatus < Struct.new( :submission_date_time, :completion_date_time, :state, :state_change_reason) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The state of the calculation execution. A description of each state follows.
CREATING
- The calculation is in the process of being created.
CREATED
- The calculation has been created and is ready to run.
QUEUED
- The calculation has been queued for processing.
RUNNING
- The calculation is running.
CANCELING
- A request to cancel the calculation has been received
and the system is working to stop it.
CANCELED
- The calculation is no longer running as the result of a
cancel request.
COMPLETED
- The calculation has completed without error.
FAILED
- The calculation failed and is no longer running.
318 319 320 321 322 323 324 325 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 318 class CalculationStatus < Struct.new( :submission_date_time, :completion_date_time, :state, :state_change_reason) SENSITIVE = [] include Aws::Structure end |
#state_change_reason ⇒ String
The reason for the calculation state change (for example, the calculation was canceled because the session was terminated).
318 319 320 321 322 323 324 325 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 318 class CalculationStatus < Struct.new( :submission_date_time, :completion_date_time, :state, :state_change_reason) SENSITIVE = [] include Aws::Structure end |
#submission_date_time ⇒ Time
The date and time the calculation was submitted for processing.
318 319 320 321 322 323 324 325 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 318 class CalculationStatus < Struct.new( :submission_date_time, :completion_date_time, :state, :state_change_reason) SENSITIVE = [] include Aws::Structure end |