interface CfnBrowserProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnBrowserProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnBrowserProfileMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnBrowserProfileMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnBrowserProfileMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnBrowserProfileMixinProps |
Properties for CfnBrowserProfilePropsMixin.
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/cfn-property-mixins';
const cfnBrowserProfileMixinProps: bedrockagentcore.CfnBrowserProfileMixinProps = {
description: 'description',
name: 'name',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the browser profile. |
| name? | string | The name of the browser profile. |
| tags? | { [string]: string } | A map of tag keys and values. |
description?
Type:
string
(optional)
The description of the browser profile.
name?
Type:
string
(optional)
The name of the browser profile.
tags?
Type:
{ [string]: string }
(optional)
A map of tag keys and values.

.NET
Go
Java
Python
TypeScript