interface HarnessMemoryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnHarnessPropsMixin.HarnessMemoryConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnHarnessPropsMixin_HarnessMemoryConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnHarnessPropsMixin.HarnessMemoryConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnHarnessPropsMixin.HarnessMemoryConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnHarnessPropsMixin » HarnessMemoryConfigurationProperty |
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';
declare const disabled: any;
const harnessMemoryConfigurationProperty: bedrockagentcore.CfnHarnessPropsMixin.HarnessMemoryConfigurationProperty = {
agentCoreMemoryConfiguration: {
actorId: 'actorId',
arn: 'arn',
messagesCount: 123,
retrievalConfig: {
retrievalConfigKey: {
relevanceScore: 'relevanceScore',
strategyId: 'strategyId',
topK: 'topK',
},
},
},
disabled: disabled,
managedMemoryConfiguration: {
arn: 'arn',
encryptionKeyArn: 'encryptionKeyArn',
eventExpiryDuration: 123,
strategies: ['strategies'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | IResolvable | Harness | |
| disabled? | any | Explicitly opt out of memory. |
| managed | IResolvable | Harness | Configuration for managed memory. |
agentCoreMemoryConfiguration?
Type:
IResolvable | Harness
(optional)
disabled?
Type:
any
(optional)
Explicitly opt out of memory.
managedMemoryConfiguration?
Type:
IResolvable | Harness
(optional)
Configuration for managed memory.
The harness creates and manages a memory resource in the customer's account.

.NET
Go
Java
Python
TypeScript