interface RecordingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnBrowserCustomPropsMixin.RecordingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnBrowserCustomPropsMixin_RecordingConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnBrowserCustomPropsMixin.RecordingConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnBrowserCustomPropsMixin.RecordingConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnBrowserCustomPropsMixin » RecordingConfigProperty |
The recording configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const recordingConfigProperty: bedrockagentcore.CfnBrowserCustomPropsMixin.RecordingConfigProperty = {
enabled: false,
s3Location: {
bucket: 'bucket',
prefix: 'prefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | The recording configuration for a browser. |
| s3 | IResolvable | S3 | The S3 location. |
enabled?
Type:
boolean | IResolvable
(optional, default: false)
The recording configuration for a browser.
This structure defines how browser sessions are recorded.
s3Location?
Type:
IResolvable | S3
(optional)
The S3 location.

.NET
Go
Java
Python
TypeScript