CfnBrowserProfileProps
- class aws_cdk.aws_bedrockagentcore.CfnBrowserProfileProps(*, name, description=None, tags=None)
Bases:
objectProperties for defining a
CfnBrowserProfile.- Parameters:
name (
str) – The name of the browser profile.description (
Optional[str]) – The description of the browser profile.tags (
Optional[Mapping[str,str]]) – A map of tag keys and values.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_bedrockagentcore as bedrockagentcore cfn_browser_profile_props = bedrockagentcore.CfnBrowserProfileProps( name="name", # the properties below are optional description="description", tags={ "tags_key": "tags" } )
Attributes
- description
The description of the browser profile.
- name
The name of the browser profile.
- tags
A map of tag keys and values.