interface CfnBrowserProfileProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnBrowserProfileProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnBrowserProfileProps |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnBrowserProfileProps |
Python | aws_cdk.aws_bedrockagentcore.CfnBrowserProfileProps |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnBrowserProfileProps |
Properties for defining a CfnBrowserProfile.
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 cfnBrowserProfileProps: bedrockagentcore.CfnBrowserProfileProps = {
name: 'name',
// the properties below are optional
description: 'description',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the browser profile. |
| description? | string | The description of the browser profile. |
| tags? | { [string]: string } | A map of tag keys and values. |
name
Type:
string
The name of the browser profile.
description?
Type:
string
(optional)
The description of the browser profile.
tags?
Type:
{ [string]: string }
(optional)
A map of tag keys and values.

.NET
Go
Java
Python
TypeScript