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