interface MemoryRecordSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnMemoryPropsMixin.MemoryRecordSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnMemoryPropsMixin_MemoryRecordSchemaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnMemoryPropsMixin.MemoryRecordSchemaProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnMemoryPropsMixin.MemoryRecordSchemaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnMemoryPropsMixin » 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/cfn-property-mixins';
const memoryRecordSchemaProperty: bedrockagentcore.CfnMemoryPropsMixin.MemoryRecordSchemaProperty = {
metadataSchema: [{
extractionConfig: {
llmExtractionConfig: {
definition: 'definition',
llmExtractionInstruction: 'llmExtractionInstruction',
validation: {
numberValidation: {
maxValue: 123,
minValue: 123,
},
stringListValidation: {
allowedValues: ['allowedValues'],
maxItems: 123,
},
stringValidation: {
allowedValues: ['allowedValues'],
},
},
},
},
key: 'key',
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