Class CfnMemory.LlmExtractionConfigProperty
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMemory.LlmExtractionConfigProperty : CfnMemory.ILlmExtractionConfigProperty
Syntax (vb)
Public Class CfnMemory.LlmExtractionConfigProperty Implements CfnMemory.ILlmExtractionConfigProperty
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 llmExtractionConfigProperty = 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" }
}
}
};
Synopsis
Constructors
| LlmExtractionConfigProperty() |
Properties
| Definition | Definition for the metadata schema entry. |
| LlmExtractionInstruction | LLM extraction instruction. |
| Validation |
Constructors
LlmExtractionConfigProperty()
public LlmExtractionConfigProperty()
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 llmExtractionConfigProperty = 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" }
}
}
};
Properties
Definition
Definition for the metadata schema entry.
public string Definition { get; set; }
Property Value
Remarks
LlmExtractionInstruction
LLM extraction instruction.
public string? LlmExtractionInstruction { get; set; }
Property Value
Remarks
Validation
public object? Validation { get; set; }