Class: Aws::BedrockAgentCore::Types::CodeInterpreterSessionSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::CodeInterpreterSessionSummary
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
A condensed representation of a code interpreter session in Amazon Bedrock. This structure contains key information about a code interpreter session, including identifiers, status, and timestamps, without the full details of the session configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code_interpreter_identifier ⇒ String
The unique identifier of the code interpreter associated with the session.
-
#created_at ⇒ Time
The timestamp when the code interpreter session was created.
-
#last_updated_at ⇒ Time
The timestamp when the code interpreter session was last updated.
-
#name ⇒ String
The name of the code interpreter session.
-
#session_id ⇒ String
The unique identifier of the code interpreter session.
-
#status ⇒ String
The current status of the code interpreter session.
Instance Attribute Details
#code_interpreter_identifier ⇒ String
The unique identifier of the code interpreter associated with the session. This identifier specifies which code interpreter environment is used for the session.
274 275 276 277 278 279 280 281 282 283 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 274 class CodeInterpreterSessionSummary < Struct.new( :code_interpreter_identifier, :session_id, :name, :status, :created_at, :last_updated_at) SENSITIVE = [] include Aws::Structure end |
#created_at ⇒ Time
The timestamp when the code interpreter session was created. This value is in ISO 8601 format.
274 275 276 277 278 279 280 281 282 283 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 274 class CodeInterpreterSessionSummary < Struct.new( :code_interpreter_identifier, :session_id, :name, :status, :created_at, :last_updated_at) SENSITIVE = [] include Aws::Structure end |
#last_updated_at ⇒ Time
The timestamp when the code interpreter session was last updated. This value is in ISO 8601 format.
274 275 276 277 278 279 280 281 282 283 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 274 class CodeInterpreterSessionSummary < Struct.new( :code_interpreter_identifier, :session_id, :name, :status, :created_at, :last_updated_at) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the code interpreter session. This name helps identify and manage the session.
274 275 276 277 278 279 280 281 282 283 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 274 class CodeInterpreterSessionSummary < Struct.new( :code_interpreter_identifier, :session_id, :name, :status, :created_at, :last_updated_at) SENSITIVE = [] include Aws::Structure end |
#session_id ⇒ String
The unique identifier of the code interpreter session. This identifier is used in operations that interact with the session.
274 275 276 277 278 279 280 281 282 283 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 274 class CodeInterpreterSessionSummary < Struct.new( :code_interpreter_identifier, :session_id, :name, :status, :created_at, :last_updated_at) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the code interpreter session. Possible values include ACTIVE, STOPPING, and STOPPED.
274 275 276 277 278 279 280 281 282 283 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 274 class CodeInterpreterSessionSummary < Struct.new( :code_interpreter_identifier, :session_id, :name, :status, :created_at, :last_updated_at) SENSITIVE = [] include Aws::Structure end |