Class CfnMemory.MetadataSchemaEntryProperty
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMemory.MetadataSchemaEntryProperty : CfnMemory.IMetadataSchemaEntryProperty
Syntax (vb)
Public Class CfnMemory.MetadataSchemaEntryProperty Implements CfnMemory.IMetadataSchemaEntryProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.BedrockAgentCore;
var metadataSchemaEntryProperty = new MetadataSchemaEntryProperty {
Key = "key",
// the properties below are optional
ExtractionConfig = new ExtractionConfigProperty {
LlmExtractionConfig = new LlmExtractionConfigProperty {
Definition = "definition",
// the properties below are optional
LlmExtractionInstruction = "llmExtractionInstruction",
Validation = new ValidationProperty {
NumberValidation = new NumberValidationProperty {
MaxValue = 123,
MinValue = 123
},
StringListValidation = new StringListValidationProperty {
AllowedValues = new [] { "allowedValues" },
MaxItems = 123
},
StringValidation = new StringValidationProperty {
AllowedValues = new [] { "allowedValues" }
}
}
}
},
Type = "type"
};
Synopsis
Constructors
| MetadataSchemaEntryProperty() |
Properties
| ExtractionConfig | |
| Key | Key name for metadata fields. |
| Type | Supported data types for metadata values. |
Constructors
MetadataSchemaEntryProperty()
public MetadataSchemaEntryProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.BedrockAgentCore;
var metadataSchemaEntryProperty = new MetadataSchemaEntryProperty {
Key = "key",
// the properties below are optional
ExtractionConfig = new ExtractionConfigProperty {
LlmExtractionConfig = new LlmExtractionConfigProperty {
Definition = "definition",
// the properties below are optional
LlmExtractionInstruction = "llmExtractionInstruction",
Validation = new ValidationProperty {
NumberValidation = new NumberValidationProperty {
MaxValue = 123,
MinValue = 123
},
StringListValidation = new StringListValidationProperty {
AllowedValues = new [] { "allowedValues" },
MaxItems = 123
},
StringValidation = new StringValidationProperty {
AllowedValues = new [] { "allowedValues" }
}
}
}
},
Type = "type"
};
Properties
ExtractionConfig
public object? ExtractionConfig { get; set; }
Property Value
Remarks
Key
Key name for metadata fields.
public string Key { get; set; }
Property Value
Remarks
Type
Supported data types for metadata values.
public string? Type { get; set; }