interface LlmExtractionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnMemoryPropsMixin.LlmExtractionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnMemoryPropsMixin_LlmExtractionConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnMemoryPropsMixin.LlmExtractionConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnMemoryPropsMixin.LlmExtractionConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnMemoryPropsMixin » 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/cfn-property-mixins';
const llmExtractionConfigProperty: bedrockagentcore.CfnMemoryPropsMixin.LlmExtractionConfigProperty = {
definition: 'definition',
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
(optional)
Definition for the metadata schema entry.
llmExtractionInstruction?
Type:
string
(optional)
LLM extraction instruction.
validation?
Type:
IResolvable | Validation
(optional)

.NET
Go
Java
Python
TypeScript