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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBrowserCustomAttributesstatic final classAn implementation forBrowserCustomAttributes -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The ARN of the agent.default StringThe created timestamp of the browser.default StringWhen this browser was last updated.The ARN of the IAM role associated to the browser.default List<ISecurityGroup> The security groups for this browser, if in a VPC.default StringThe status of the browser.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBrowserArn
The ARN of the agent. -
getRoleArn
The ARN of the IAM role associated to the browser. -
getCreatedAt
The created timestamp of the browser.Default: undefined - No created timestamp is provided
-
getLastUpdatedAt
When this browser was last updated.Default: undefined - No last updated timestamp is provided
-
getSecurityGroups
The security groups for this browser, if in a VPC.Default: - By default, the browser is not in a VPC.
-
getStatus
The status of the browser.Default: undefined - No status is provided
-
builder
- Returns:
- a
BrowserCustomAttributes.BuilderofBrowserCustomAttributes
-