interface HarnessManagedMemoryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnHarness.HarnessManagedMemoryConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnHarness_HarnessManagedMemoryConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnHarness.HarnessManagedMemoryConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnHarness.HarnessManagedMemoryConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnHarness » HarnessManagedMemoryConfigurationProperty |
Configuration for managed memory.
The harness creates and manages a memory resource in the customer's account.
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-lib';
const harnessManagedMemoryConfigurationProperty: bedrockagentcore.CfnHarness.HarnessManagedMemoryConfigurationProperty = {
arn: 'arn',
encryptionKeyArn: 'encryptionKeyArn',
eventExpiryDuration: 123,
strategies: ['strategies'],
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The ARN of the managed memory resource. |
| encryption | string | Customer-managed KMS key ARN. |
| event | number | Event retention in days. |
| strategies? | string[] | Strategy types to enable. |
arn?
Type:
string
(optional)
The ARN of the managed memory resource.
Read-only, populated by the service.
encryptionKeyArn?
Type:
string
(optional)
Customer-managed KMS key ARN.
Defaults to AWS-owned key. Not updatable after creation.
eventExpiryDuration?
Type:
number
(optional)
Event retention in days.
Defaults to 30.
strategies?
Type:
string[]
(optional)
Strategy types to enable.
Defaults to [SEMANTIC, SUMMARIZATION].

.NET
Go
Java
Python
TypeScript