interface BrowserCustomProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.BrowserCustomProps |
Go | github.com/aws/aws-cdk-go/awsbedrockagentcorealpha/v2#BrowserCustomProps |
Java | software.amazon.awscdk.services.bedrock.agentcore.alpha.BrowserCustomProps |
Python | aws_cdk.aws_bedrock_agentcore_alpha.BrowserCustomProps |
TypeScript (source) | @aws-cdk/aws-bedrock-agentcore-alpha ยป BrowserCustomProps |
Properties for creating a Browser resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as bedrock_agentcore_alpha from '@aws-cdk/aws-bedrock-agentcore-alpha';
import { aws_iam as iam } from 'aws-cdk-lib';
declare const browserNetworkConfiguration: bedrock_agentcore_alpha.BrowserNetworkConfiguration;
declare const role: iam.Role;
const browserCustomProps: bedrock_agentcore_alpha.BrowserCustomProps = {
browserCustomName: 'browserCustomName',
browserSigning: bedrock_agentcore_alpha.BrowserSigning.ENABLED,
description: 'description',
executionRole: role,
networkConfiguration: browserNetworkConfiguration,
recordingConfig: {
enabled: false,
s3Location: {
bucketName: 'bucketName',
objectKey: 'objectKey',
// the properties below are optional
objectVersion: 'objectVersion',
},
},
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| browser | string | The name of the browser Valid characters are a-z, A-Z, 0-9, _ (underscore) The name must start with a letter and can be up to 48 characters long Pattern: [a-zA-Z][a-zA-Z0-9_]{0,47}. |
| browser | Browser | Specifies whether browser signing is enabled. |
| description? | string | Optional description for the browser Valid characters are a-z, A-Z, 0-9, _ (underscore), - (hyphen) and spaces The description can have up to 200 characters. |
| execution | IRole | The IAM role that provides permissions for the browser to access AWS services. |
| network | Browser | Network configuration for browser. |
| recording | Recording | Recording configuration for browser. |
| tags? | { [string]: string } | Tags (optional) A list of key:value pairs of tags to apply to this Browser resource. |
browserCustomName?
Type:
string
(optional, default: auto generate)
The name of the browser Valid characters are a-z, A-Z, 0-9, _ (underscore) The name must start with a letter and can be up to 48 characters long Pattern: [a-zA-Z][a-zA-Z0-9_]{0,47}.
browserSigning?
Type:
Browser
(optional, default: BrowserSigning.DISABLED)
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.
description?
Type:
string
(optional, default: No description)
Optional description for the browser Valid characters are a-z, A-Z, 0-9, _ (underscore), - (hyphen) and spaces The description can have up to 200 characters.
executionRole?
Type:
IRole
(optional, default: A new role will be created)
The IAM role that provides permissions for the browser to access AWS services.
networkConfiguration?
Type:
Browser
(optional, default: PUBLIC network mode)
Network configuration for browser.
recordingConfig?
Type:
Recording
(optional, default: No recording configuration)
Recording configuration for browser.
tags?
Type:
{ [string]: string }
(optional, default: {} - no tags)
Tags (optional) A list of key:value pairs of tags to apply to this Browser resource.

.NET
Go
Java
Python
TypeScript (