RecordingConfig

class aws_cdk.aws_bedrock_agentcore_alpha.RecordingConfig(*, enabled=None, s3_location=None)

Bases: object

(experimental) Recording configuration for browser.

Parameters:
  • enabled (Optional[bool]) – (experimental) Whether recording is enabled. Default: false

  • s3_location (Union[Location, Dict[str, Any], None]) – (experimental) S3 Location Configuration. Default: - undefined

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk.aws_s3 import Location
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_bedrock_agentcore_alpha as bedrock_agentcore_alpha

recording_config = bedrock_agentcore_alpha.RecordingConfig(
    enabled=False,
    s3_location=Location(
        bucket_name="bucketName",
        object_key="objectKey",

        # the properties below are optional
        object_version="objectVersion"
    )
)

Attributes

enabled

(experimental) Whether recording is enabled.

Default:

false

Stability:

experimental

s3_location

(experimental) S3 Location Configuration.

Default:
  • undefined

Stability:

experimental