interface MemoryRecordSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnMemory.MemoryRecordSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnMemory_MemoryRecordSchemaProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnMemory.MemoryRecordSchemaProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnMemory.MemoryRecordSchemaProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnMemory » MemoryRecordSchemaProperty |
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 memoryRecordSchemaProperty: bedrockagentcore.CfnMemory.MemoryRecordSchemaProperty = {
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',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| metadata | IResolvable | (IResolvable | Metadata)[] | List of metadata schema entries. |
metadataSchema?
Type:
IResolvable | (IResolvable | Metadata)[]
(optional)
List of metadata schema entries.

.NET
Go
Java
Python
TypeScript