interface SemanticOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnMemoryPropsMixin.SemanticOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnMemoryPropsMixin_SemanticOverrideProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnMemoryPropsMixin.SemanticOverrideProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnMemoryPropsMixin.SemanticOverrideProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnMemoryPropsMixin » SemanticOverrideProperty |
The memory override.
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/cfn-property-mixins';
const semanticOverrideProperty: bedrockagentcore.CfnMemoryPropsMixin.SemanticOverrideProperty = {
consolidation: {
appendToPrompt: 'appendToPrompt',
modelId: 'modelId',
},
extraction: {
appendToPrompt: 'appendToPrompt',
modelId: 'modelId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| consolidation? | IResolvable | Semantic | The memory override consolidation. |
| extraction? | IResolvable | Semantic | The memory override extraction. |
consolidation?
Type:
IResolvable | Semantic
(optional)
The memory override consolidation.
extraction?
Type:
IResolvable | Semantic
(optional)
The memory override extraction.

.NET
Go
Java
Python
TypeScript