interface EpisodicOverrideReflectionConfigurationInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnMemory.EpisodicOverrideReflectionConfigurationInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnMemory_EpisodicOverrideReflectionConfigurationInputProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnMemory.EpisodicOverrideReflectionConfigurationInputProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnMemory.EpisodicOverrideReflectionConfigurationInputProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnMemory » EpisodicOverrideReflectionConfigurationInputProperty |
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 episodicOverrideReflectionConfigurationInputProperty: bedrockagentcore.CfnMemory.EpisodicOverrideReflectionConfigurationInputProperty = {
appendToPrompt: 'appendToPrompt',
modelId: 'modelId',
// the properties below are optional
memoryRecordSchema: {
metadataSchema: [{
key: 'key',
// the properties below are optional
extractionConfig: {
llmExtractionConfig: {
definition: 'definition',
// the properties below are optional
llmExtractionInstruction: 'llmExtractionInstruction',
validation: {
numberValidation: {
maxValue: 123,
minValue: 123,
},
stringListValidation: {
allowedValues: ['allowedValues'],
maxItems: 123,
},
stringValidation: {
allowedValues: ['allowedValues'],
},
},
},
},
type: 'type',
}],
},
namespaces: ['namespaces'],
namespaceTemplates: ['namespaceTemplates'],
};
Properties
| Name | Type | Description |
|---|---|---|
| append | string | Text prompt for model instructions. |
| model | string | |
| memory | IResolvable | Memory | |
| namespace | string[] | List of namespaces for memory strategy. |
| namespaces? | string[] | List of namespaces for memory strategy. |
appendToPrompt
Type:
string
Text prompt for model instructions.
modelId
Type:
string
memoryRecordSchema?
Type:
IResolvable | Memory
(optional)
namespaceTemplates?
Type:
string[]
(optional)
List of namespaces for memory strategy.
namespaces?
Type:
string[]
(optional)
List of namespaces for memory strategy.

.NET
Go
Java
Python
TypeScript