Class: Aws::BedrockAgentCore::Types::AutomationStream
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::AutomationStream
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
The configuration for a stream that enables programmatic control of a browser session in Amazon Bedrock. This stream provides a bidirectional communication channel for sending commands to the browser and receiving responses, allowing agents to automate web interactions such as navigation, form filling, and element clicking.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#stream_endpoint ⇒ String
The endpoint URL for the automation stream.
-
#stream_status ⇒ String
The current status of the automation stream.
Instance Attribute Details
#stream_endpoint ⇒ String
The endpoint URL for the automation stream. This URL is used to establish a WebSocket connection to the stream for sending commands and receiving responses.
63 64 65 66 67 68 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 63 class AutomationStream < Struct.new( :stream_endpoint, :stream_status) SENSITIVE = [] include Aws::Structure end |
#stream_status ⇒ String
The current status of the automation stream. This indicates whether the stream is available for use. Possible values include ACTIVE, CONNECTING, and DISCONNECTED.
63 64 65 66 67 68 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 63 class AutomationStream < Struct.new( :stream_endpoint, :stream_status) SENSITIVE = [] include Aws::Structure end |