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 browser. |
network | IResolvable | Browser | Network configuration for browser. |
description? | string | The description of the browser. |
execution | string | The Amazon Resource Name (ARN) of the IAM role. |
recording | IResolvable | Recording | Recording configuration for browser. |
tags? | { [string]: string } | A map of tag keys and values. |
name
Type:
string
The name of the browser.
networkConfiguration
Type:
IResolvable
|
Browser
Network configuration for browser.
description?
Type:
string
(optional)
The description of the browser.
executionRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role.
recordingConfig?
Type:
IResolvable
|
Recording
(optional)
Recording configuration for browser.
tags?
Type:
{ [string]: string }
(optional)
A map of tag keys and values.