Class: Aws::BedrockAgentCore::Types::BrowserSessionStream

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#automation_streamTypes::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_streamTypes::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