interface SemanticMemoryStrategyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnMemory.SemanticMemoryStrategyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnMemory_SemanticMemoryStrategyProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnMemory.SemanticMemoryStrategyProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnMemory.SemanticMemoryStrategyProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnMemory » SemanticMemoryStrategyProperty |
The memory strategy.
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 semanticMemoryStrategyProperty: bedrockagentcore.CfnMemory.SemanticMemoryStrategyProperty = {
name: 'name',
// the properties below are optional
createdAt: 'createdAt',
description: 'description',
namespaces: ['namespaces'],
status: 'status',
strategyId: 'strategyId',
type: 'type',
updatedAt: 'updatedAt',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The memory strategy name. |
| created | string | Creation timestamp of the memory strategy. |
| description? | string | The memory strategy description. |
| namespaces? | string[] | The memory strategy namespaces. |
| status? | string | Status of the memory strategy. |
| strategy | string | The memory strategy ID. |
| type? | string | The memory strategy type. |
| updated | string | Last update timestamp of the memory strategy. |
name
Type:
string
The memory strategy name.
createdAt?
Type:
string
(optional)
Creation timestamp of the memory strategy.
description?
Type:
string
(optional)
The memory strategy description.
namespaces?
Type:
string[]
(optional)
The memory strategy namespaces.
status?
Type:
string
(optional)
Status of the memory strategy.
strategyId?
Type:
string
(optional)
The memory strategy ID.
type?
Type:
string
(optional)
The memory strategy type.
updatedAt?
Type:
string
(optional)
Last update timestamp of the memory strategy.

.NET
Go
Java
Python
TypeScript