Class: Aws::Athena::Types::StartSessionResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::StartSessionResponse
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#session_id ⇒ String
The session ID.
-
#state ⇒ String
The state of the session.
Instance Attribute Details
#session_id ⇒ String
The session ID.
4403 4404 4405 4406 4407 4408 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 4403 class StartSessionResponse < Struct.new( :session_id, :state) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The state of the session. A description of each state follows.
CREATING
- The session is being started, including acquiring
resources.
CREATED
- The session has been started.
IDLE
- The session is able to accept a calculation.
BUSY
- The session is processing another task and is unable to
accept a calculation.
TERMINATING
- The session is in the process of shutting down.
TERMINATED
- The session and its resources are no longer running.
DEGRADED
- The session has no healthy coordinators.
FAILED
- Due to a failure, the session and its resources are no
longer running.
4403 4404 4405 4406 4407 4408 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 4403 class StartSessionResponse < Struct.new( :session_id, :state) SENSITIVE = [] include Aws::Structure end |