interface CfnBrowserCustomProps
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_bedrockagentcore.CfnBrowserCustomProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnBrowserCustomProps |
![]() | software.amazon.awscdk.services.bedrockagentcore.CfnBrowserCustomProps |
![]() | aws_cdk.aws_bedrockagentcore.CfnBrowserCustomProps |
![]() | 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
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. |
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.
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.