Class: Aws::BedrockAgentCore::Types::ViewPort
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::ViewPort
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
The configuration that defines the dimensions of a browser viewport in a browser session. The viewport determines the visible area of web content and affects how web pages are rendered and displayed. Proper viewport configuration ensures that web content is displayed correctly for the agent's browsing tasks.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#height ⇒ Integer
The height of the viewport in pixels.
-
#width ⇒ Integer
The width of the viewport in pixels.
Instance Attribute Details
#height ⇒ Integer
The height of the viewport in pixels. This value determines the vertical dimension of the visible area. Valid values range from 600 to 1080 pixels.
2457 2458 2459 2460 2461 2462 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2457 class ViewPort < Struct.new( :width, :height) SENSITIVE = [] include Aws::Structure end |
#width ⇒ Integer
The width of the viewport in pixels. This value determines the horizontal dimension of the visible area. Valid values range from 800 to 1920 pixels.
2457 2458 2459 2460 2461 2462 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2457 class ViewPort < Struct.new( :width, :height) SENSITIVE = [] include Aws::Structure end |