CfnBrowserCustomProps
- class aws_cdk.aws_bedrockagentcore.CfnBrowserCustomProps(*, name, network_configuration, browser_signing=None, description=None, execution_role_arn=None, recording_config=None, tags=None)
Bases:
objectProperties for defining a
CfnBrowserCustom.- Parameters:
name (
str) – The name of the custom browser.network_configuration (
Union[IResolvable,BrowserNetworkConfigurationProperty,Dict[str,Any]]) – The network configuration for a code interpreter. This structure defines how the code interpreter connects to the network.browser_signing (
Union[IResolvable,BrowserSigningProperty,Dict[str,Any],None]) – Browser signing configuration.description (
Optional[str]) – The custom browser.execution_role_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the execution role.recording_config (
Union[IResolvable,RecordingConfigProperty,Dict[str,Any],None]) – THe custom browser configuration.tags (
Optional[Mapping[str,str]]) – The tags for the custom browser.
- 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_custom_props = bedrockagentcore.CfnBrowserCustomProps( name="name", network_configuration=bedrockagentcore.CfnBrowserCustom.BrowserNetworkConfigurationProperty( network_mode="networkMode", # the properties below are optional vpc_config=bedrockagentcore.CfnBrowserCustom.VpcConfigProperty( security_groups=["securityGroups"], subnets=["subnets"] ) ), # the properties below are optional browser_signing=bedrockagentcore.CfnBrowserCustom.BrowserSigningProperty( enabled=False ), description="description", execution_role_arn="executionRoleArn", recording_config=bedrockagentcore.CfnBrowserCustom.RecordingConfigProperty( enabled=False, s3_location=bedrockagentcore.CfnBrowserCustom.S3LocationProperty( bucket="bucket", prefix="prefix" ) ), tags={ "tags_key": "tags" } )
Attributes
- browser_signing
Browser signing configuration.
- description
The custom browser.
- execution_role_arn
The Amazon Resource Name (ARN) of the execution role.
- name
The name of the custom browser.
- network_configuration
The network configuration for a code interpreter.
This structure defines how the code interpreter connects to the network.
- recording_config
THe custom browser configuration.
- tags
The tags for the custom browser.