interface CfnBrowserCustomProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnBrowserCustomProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnBrowserCustomProps |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnBrowserCustomProps |
Python | aws_cdk.aws_bedrockagentcore.CfnBrowserCustomProps |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnBrowserCustomProps |
Properties for defining a CfnBrowserCustom.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const cfnBrowserCustomProps: bedrockagentcore.CfnBrowserCustomProps = {
name: 'name',
networkConfiguration: {
networkMode: 'networkMode',
// the properties below are optional
vpcConfig: {
securityGroups: ['securityGroups'],
subnets: ['subnets'],
},
},
// the properties below are optional
browserSigning: {
enabled: false,
},
description: 'description',
executionRoleArn: 'executionRoleArn',
recordingConfig: {
enabled: false,
s3Location: {
bucket: 'bucket',
prefix: 'prefix',
},
},
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the custom browser. |
| network | IResolvable | Browser | The network configuration for a code interpreter. |
| browser | IResolvable | Browser | Browser signing configuration. |
| description? | string | The custom browser. |
| execution | string | The Amazon Resource Name (ARN) of the execution role. |
| recording | IResolvable | Recording | THe custom browser configuration. |
| tags? | { [string]: string } | The tags for the custom browser. |
name
Type:
string
The name of the custom browser.
networkConfiguration
Type:
IResolvable | Browser
The network configuration for a code interpreter.
This structure defines how the code interpreter connects to the network.
browserSigning?
Type:
IResolvable | Browser
(optional)
Browser signing configuration.
description?
Type:
string
(optional)
The custom browser.
executionRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the execution role.
recordingConfig?
Type:
IResolvable | Recording
(optional)
THe custom browser configuration.
tags?
Type:
{ [string]: string }
(optional)
The tags for the custom browser.

.NET
Go
Java
Python
TypeScript