Class: Aws::Athena::Types::CalculationStatus

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#completion_date_timeTime

The date and time the calculation completed processing.

Returns:

  • (Time)


314
315
316
317
318
319
320
321
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 314

class CalculationStatus < Struct.new(
  :submission_date_time,
  :completion_date_time,
  :state,
  :state_change_reason)
  SENSITIVE = []
  include Aws::Structure
end

#stateString

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.

Returns:

  • (String)


314
315
316
317
318
319
320
321
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 314

class CalculationStatus < Struct.new(
  :submission_date_time,
  :completion_date_time,
  :state,
  :state_change_reason)
  SENSITIVE = []
  include Aws::Structure
end

#state_change_reasonString

The reason for the calculation state change (for example, the calculation was canceled because the session was terminated).

Returns:

  • (String)


314
315
316
317
318
319
320
321
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 314

class CalculationStatus < Struct.new(
  :submission_date_time,
  :completion_date_time,
  :state,
  :state_change_reason)
  SENSITIVE = []
  include Aws::Structure
end

#submission_date_timeTime

The date and time the calculation was submitted for processing.

Returns:

  • (Time)


314
315
316
317
318
319
320
321
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 314

class CalculationStatus < Struct.new(
  :submission_date_time,
  :completion_date_time,
  :state,
  :state_change_reason)
  SENSITIVE = []
  include Aws::Structure
end