Class: Aws::Athena::Types::StopCalculationExecutionResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-athena/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#stateString

‘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.

Returns:

  • (String)


4259
4260
4261
4262
4263
# File 'lib/aws-sdk-athena/types.rb', line 4259

class StopCalculationExecutionResponse < Struct.new(
  :state)
  SENSITIVE = []
  include Aws::Structure
end