BrowserSigning

class aws_cdk.aws_bedrockagentcore.BrowserSigning(*values)

Bases: Enum

Browser signing.

Specifies whether browser signing is enabled. When enabled, the browser will cryptographically sign HTTP requests to identify itself as an AI agent to bot control vendors.

ExampleMetadata:

fixture=default infused

Example:

browser = agentcore.BrowserCustom(self, "test-browser",
    browser_custom_name="test_browser",
    browser_signing=agentcore.BrowserSigning.ENABLED
)

Attributes

DISABLED

Browser signing is disabled.

ENABLED

Browser signing is enabled.