Interface BrowserCustomAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
BrowserCustomAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)", date="2026-05-19T19:44:36.916Z") @Stability(Stable) public interface BrowserCustomAttributes extends software.amazon.jsii.JsiiSerializable
Attributes for specifying an imported Browser Custom.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.bedrockagentcore.*;
 import software.amazon.awscdk.services.ec2.*;
 SecurityGroup securityGroup;
 BrowserCustomAttributes browserCustomAttributes = BrowserCustomAttributes.builder()
         .browserArn("browserArn")
         .roleArn("roleArn")
         // the properties below are optional
         .createdAt("createdAt")
         .lastUpdatedAt("lastUpdatedAt")
         .securityGroups(List.of(securityGroup))
         .status("status")
         .build();
 
  • Method Details

    • getBrowserArn

      @Stability(Stable) @NotNull String getBrowserArn()
      The ARN of the agent.
    • getRoleArn

      @Stability(Stable) @NotNull String getRoleArn()
      The ARN of the IAM role associated to the browser.
    • getCreatedAt

      @Stability(Stable) @Nullable default String getCreatedAt()
      The created timestamp of the browser.

      Default: undefined - No created timestamp is provided

    • getLastUpdatedAt

      @Stability(Stable) @Nullable default String getLastUpdatedAt()
      When this browser was last updated.

      Default: undefined - No last updated timestamp is provided

    • getSecurityGroups

      @Stability(Stable) @Nullable default List<ISecurityGroup> getSecurityGroups()
      The security groups for this browser, if in a VPC.

      Default: - By default, the browser is not in a VPC.

    • getStatus

      @Stability(Stable) @Nullable default String getStatus()
      The status of the browser.

      Default: undefined - No status is provided

    • builder

      @Stability(Stable) static BrowserCustomAttributes.Builder builder()
      Returns:
      a BrowserCustomAttributes.Builder of BrowserCustomAttributes