Class: Aws::BedrockAgentCore::Types::BrowserSessionSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::BrowserSessionSummary
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
A condensed representation of a browser session in Amazon Bedrock AgentCore. This structure contains key information about a browser session, including identifiers, status, and timestamps, without the full details of the session configuration and streams.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#browser_identifier ⇒ String
The unique identifier of the browser associated with the session.
-
#created_at ⇒ Time
The timestamp when the browser session was created.
-
#last_updated_at ⇒ Time
The timestamp when the browser session was last updated.
-
#name ⇒ String
The name of the browser session.
-
#session_id ⇒ String
The unique identifier of the browser session.
-
#status ⇒ String
The current status of the browser session.
Instance Attribute Details
#browser_identifier ⇒ String
The unique identifier of the browser associated with the session. This identifier specifies which browser environment is used for the session.
575 576 577 578 579 580 581 582 583 584 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 575 class BrowserSessionSummary < Struct.new( :browser_identifier, :session_id, :name, :status, :created_at, :last_updated_at) SENSITIVE = [] include Aws::Structure end |
#created_at ⇒ Time
The timestamp when the browser session was created. This value is in ISO 8601 format.
575 576 577 578 579 580 581 582 583 584 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 575 class BrowserSessionSummary < Struct.new( :browser_identifier, :session_id, :name, :status, :created_at, :last_updated_at) SENSITIVE = [] include Aws::Structure end |
#last_updated_at ⇒ Time
The timestamp when the browser session was last updated. This value is in ISO 8601 format.
575 576 577 578 579 580 581 582 583 584 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 575 class BrowserSessionSummary < Struct.new( :browser_identifier, :session_id, :name, :status, :created_at, :last_updated_at) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the browser session. This name helps identify and manage the session.
575 576 577 578 579 580 581 582 583 584 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 575 class BrowserSessionSummary < Struct.new( :browser_identifier, :session_id, :name, :status, :created_at, :last_updated_at) SENSITIVE = [] include Aws::Structure end |
#session_id ⇒ String
The unique identifier of the browser session. This identifier is used in operations that interact with the session.
575 576 577 578 579 580 581 582 583 584 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 575 class BrowserSessionSummary < Struct.new( :browser_identifier, :session_id, :name, :status, :created_at, :last_updated_at) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the browser session. Possible values include ACTIVE, STOPPING, and STOPPED.
575 576 577 578 579 580 581 582 583 584 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 575 class BrowserSessionSummary < Struct.new( :browser_identifier, :session_id, :name, :status, :created_at, :last_updated_at) SENSITIVE = [] include Aws::Structure end |