interface LlmExtractionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnMemory.LlmExtractionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnMemory_LlmExtractionConfigProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnMemory.LlmExtractionConfigProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnMemory.LlmExtractionConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnMemory » LlmExtractionConfigProperty |
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 llmExtractionConfigProperty: bedrockagentcore.CfnMemory.LlmExtractionConfigProperty = {
definition: 'definition',
// the properties below are optional
llmExtractionInstruction: 'llmExtractionInstruction',
validation: {
numberValidation: {
maxValue: 123,
minValue: 123,
},
stringListValidation: {
allowedValues: ['allowedValues'],
maxItems: 123,
},
stringValidation: {
allowedValues: ['allowedValues'],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| definition | string | Definition for the metadata schema entry. |
| llm | string | LLM extraction instruction. |
| validation? | IResolvable | Validation |
definition
Type:
string
Definition for the metadata schema entry.
llmExtractionInstruction?
Type:
string
(optional)
LLM extraction instruction.
validation?
Type:
IResolvable | Validation
(optional)

.NET
Go
Java
Python
TypeScript