interface SemanticMemoryStrategyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnMemoryPropsMixin.SemanticMemoryStrategyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnMemoryPropsMixin_SemanticMemoryStrategyProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnMemoryPropsMixin.SemanticMemoryStrategyProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnMemoryPropsMixin.SemanticMemoryStrategyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnMemoryPropsMixin » 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 { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
const semanticMemoryStrategyProperty: bedrockagentcore_mixins.CfnMemoryPropsMixin.SemanticMemoryStrategyProperty = {
createdAt: 'createdAt',
description: 'description',
name: 'name',
namespaces: ['namespaces'],
status: 'status',
strategyId: 'strategyId',
type: 'type',
updatedAt: 'updatedAt',
};
Properties
| Name | Type | Description |
|---|---|---|
| created | string | Creation timestamp of the memory strategy. |
| description? | string | The memory strategy description. |
| name? | string | The memory strategy name. |
| 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. |
createdAt?
Type:
string
(optional)
Creation timestamp of the memory strategy.
description?
Type:
string
(optional)
The memory strategy description.
name?
Type:
string
(optional)
The memory strategy name.
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