BrowserProfileReference

class aws_cdk.interfaces.aws_bedrockagentcore.BrowserProfileReference(*, profile_arn, profile_id)

Bases: object

A reference to a BrowserProfile resource.

Parameters:
  • profile_arn (str) – The ARN of the BrowserProfile resource.

  • profile_id (str) – The ProfileId of the BrowserProfile resource.

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.interfaces import aws_bedrockagentcore as interfaces_bedrockagentcore

browser_profile_reference = interfaces_bedrockagentcore.BrowserProfileReference(
    profile_arn="profileArn",
    profile_id="profileId"
)

Attributes

profile_arn

The ARN of the BrowserProfile resource.

profile_id

The ProfileId of the BrowserProfile resource.