Class CfnMemory.SemanticMemoryStrategyProperty
The memory strategy.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMemory.SemanticMemoryStrategyProperty : CfnMemory.ISemanticMemoryStrategyProperty
Syntax (vb)
Public Class CfnMemory.SemanticMemoryStrategyProperty Implements CfnMemory.ISemanticMemoryStrategyProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.BedrockAgentCore;
var semanticMemoryStrategyProperty = new SemanticMemoryStrategyProperty {
Name = "name",
// the properties below are optional
CreatedAt = "createdAt",
Description = "description",
Namespaces = new [] { "namespaces" },
Status = "status",
StrategyId = "strategyId",
Type = "type",
UpdatedAt = "updatedAt"
};
Synopsis
Constructors
| SemanticMemoryStrategyProperty() | The memory strategy. |
Properties
| CreatedAt | Creation timestamp of the memory strategy. |
| Description | The memory strategy description. |
| Name | The memory strategy name. |
| Namespaces | The memory strategy namespaces. |
| Status | Status of the memory strategy. |
| StrategyId | The memory strategy ID. |
| Type | The memory strategy type. |
| UpdatedAt | Last update timestamp of the memory strategy. |
Constructors
SemanticMemoryStrategyProperty()
The memory strategy.
public SemanticMemoryStrategyProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.BedrockAgentCore;
var semanticMemoryStrategyProperty = new SemanticMemoryStrategyProperty {
Name = "name",
// the properties below are optional
CreatedAt = "createdAt",
Description = "description",
Namespaces = new [] { "namespaces" },
Status = "status",
StrategyId = "strategyId",
Type = "type",
UpdatedAt = "updatedAt"
};
Properties
CreatedAt
Creation timestamp of the memory strategy.
public string? CreatedAt { get; set; }
Property Value
Remarks
Description
The memory strategy description.
public string? Description { get; set; }
Property Value
Remarks
Name
The memory strategy name.
public string Name { get; set; }
Property Value
Remarks
Namespaces
The memory strategy namespaces.
public string[]? Namespaces { get; set; }
Property Value
string[]
Remarks
Status
Status of the memory strategy.
public string? Status { get; set; }
Property Value
Remarks
StrategyId
The memory strategy ID.
public string? StrategyId { get; set; }
Property Value
Remarks
Type
The memory strategy type.
public string? Type { get; set; }
Property Value
Remarks
UpdatedAt
Last update timestamp of the memory strategy.
public string? UpdatedAt { get; set; }