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
namespaces: ['namespaces'],
};
Properties
| Name | Type | Description |
|---|---|---|
| append | string | Text prompt for model instructions. |
| model | string | |
| namespaces? | string[] | List of namespaces for memory strategy. |
appendToPrompt
Type:
string
Text prompt for model instructions.
modelId
Type:
string
namespaces?
Type:
string[]
(optional)
List of namespaces for memory strategy.

.NET
Go
Java
Python
TypeScript