Class: Aws::BedrockAgentCore::Types::BrowserSessionStream
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::BrowserSessionStream
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
The collection of streams associated with a browser session in Amazon Bedrock. These streams provide different ways to interact with and observe the browser session, including programmatic control and visual representation of the browser content.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#automation_stream ⇒ Types::AutomationStream
The stream that enables programmatic control of the browser.
-
#live_view_stream ⇒ Types::LiveViewStream
The stream that provides a visual representation of the browser content.
Instance Attribute Details
#automation_stream ⇒ Types::AutomationStream
The stream that enables programmatic control of the browser. This stream allows agents to perform actions such as navigating to URLs, clicking elements, and filling forms.
143 144 145 146 147 148 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 143 class BrowserSessionStream < Struct.new( :automation_stream, :live_view_stream) SENSITIVE = [] include Aws::Structure end |
#live_view_stream ⇒ Types::LiveViewStream
The stream that provides a visual representation of the browser content. This stream allows agents to observe the current state of the browser, including rendered web pages and visual elements.
143 144 145 146 147 148 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 143 class BrowserSessionStream < Struct.new( :automation_stream, :live_view_stream) SENSITIVE = [] include Aws::Structure end |