interface RecordingConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.RecordingConfig |
Go | github.com/aws/aws-cdk-go/awsbedrockagentcorealpha/v2#RecordingConfig |
Java | software.amazon.awscdk.services.bedrock.agentcore.alpha.RecordingConfig |
Python | aws_cdk.aws_bedrock_agentcore_alpha.RecordingConfig |
TypeScript (source) | @aws-cdk/aws-bedrock-agentcore-alpha ยป RecordingConfig |
Recording configuration for browser.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as bedrock_agentcore_alpha from '@aws-cdk/aws-bedrock-agentcore-alpha';
const recordingConfig: bedrock_agentcore_alpha.RecordingConfig = {
enabled: false,
s3Location: {
bucketName: 'bucketName',
objectKey: 'objectKey',
// the properties below are optional
objectVersion: 'objectVersion',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | Whether recording is enabled. |
| s3 | Location | S3 Location Configuration. |
enabled?
Type:
boolean
(optional, default: false)
Whether recording is enabled.
s3Location?
Type:
Location
(optional, default: undefined)
S3 Location Configuration.

.NET
Go
Java
Python
TypeScript (