java.lang.Object
java.lang.Enum<BrowserSigning>
software.amazon.awscdk.services.bedrockagentcore.BrowserSigning
All Implemented Interfaces:
Serializable, Comparable<BrowserSigning>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.129.0 (build eaca441)", date="2026-05-19T08:18:44.228Z") @Stability(Stable) public enum BrowserSigning extends Enum<BrowserSigning>
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.

Example:

 BrowserCustom browser = BrowserCustom.Builder.create(this, "test-browser")
         .browserCustomName("test_browser")
         .browserSigning(BrowserSigning.ENABLED)
         .build();
 
  • Enum Constant Details

    • ENABLED

      @Stability(Stable) public static final BrowserSigning ENABLED
      Browser signing is enabled.
    • DISABLED

      @Stability(Stable) public static final BrowserSigning DISABLED
      Browser signing is disabled.
  • Method Details

    • values

      public static BrowserSigning[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static BrowserSigning valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null