Class: Aws::Athena::Types::StopCalculationExecutionResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::StopCalculationExecutionResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#state ⇒ String
‘CREATING` - The calculation is in the process of being created.
Instance Attribute Details
#state ⇒ String
‘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.
4249 4250 4251 4252 4253 |
# File 'lib/aws-sdk-athena/types.rb', line 4249 class StopCalculationExecutionResponse < Struct.new( :state) SENSITIVE = [] include Aws::Structure end |