Class: Aws::Athena::Types::StartCalculationExecutionResponse

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#calculation_execution_idString

The calculation execution UUID.

Returns:

  • (String)


4051
4052
4053
4054
4055
4056
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 4051

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

#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)


4051
4052
4053
4054
4055
4056
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 4051

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