interface CustomConfigurationInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnMemory.CustomConfigurationInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnMemory_CustomConfigurationInputProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnMemory.CustomConfigurationInputProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnMemory.CustomConfigurationInputProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnMemory » CustomConfigurationInputProperty |
The memory configuration input.
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 customConfigurationInputProperty: bedrockagentcore.CfnMemory.CustomConfigurationInputProperty = {
selfManagedConfiguration: {
historicalContextWindowSize: 123,
invocationConfiguration: {
payloadDeliveryBucketName: 'payloadDeliveryBucketName',
topicArn: 'topicArn',
},
triggerConditions: [{
messageBasedTrigger: {
messageCount: 123,
},
timeBasedTrigger: {
idleSessionTimeout: 123,
},
tokenBasedTrigger: {
tokenCount: 123,
},
}],
},
semanticOverride: {
consolidation: {
appendToPrompt: 'appendToPrompt',
modelId: 'modelId',
},
extraction: {
appendToPrompt: 'appendToPrompt',
modelId: 'modelId',
},
},
summaryOverride: {
consolidation: {
appendToPrompt: 'appendToPrompt',
modelId: 'modelId',
},
},
userPreferenceOverride: {
consolidation: {
appendToPrompt: 'appendToPrompt',
modelId: 'modelId',
},
extraction: {
appendToPrompt: 'appendToPrompt',
modelId: 'modelId',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| self | IResolvable | Self | The custom configuration input. |
| semantic | IResolvable | Semantic | The memory override configuration. |
| summary | IResolvable | Summary | The memory configuration override. |
| user | IResolvable | User | The memory user preference override. |
selfManagedConfiguration?
Type:
IResolvable | Self
(optional)
The custom configuration input.
semanticOverride?
Type:
IResolvable | Semantic
(optional)
The memory override configuration.
summaryOverride?
Type:
IResolvable | Summary
(optional)
The memory configuration override.
userPreferenceOverride?
Type:
IResolvable | User
(optional)
The memory user preference override.

.NET
Go
Java
Python
TypeScript