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