interface NeptuneAnalyticsFieldMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnKnowledgeBasePropsMixin.NeptuneAnalyticsFieldMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnKnowledgeBasePropsMixin_NeptuneAnalyticsFieldMappingProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnKnowledgeBasePropsMixin.NeptuneAnalyticsFieldMappingProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnKnowledgeBasePropsMixin.NeptuneAnalyticsFieldMappingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnKnowledgeBasePropsMixin » NeptuneAnalyticsFieldMappingProperty |
Contains the names of the fields to which to map information about the vector store.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const neptuneAnalyticsFieldMappingProperty: bedrock_mixins.CfnKnowledgeBasePropsMixin.NeptuneAnalyticsFieldMappingProperty = {
metadataField: 'metadataField',
textField: 'textField',
};
Properties
| Name | Type | Description |
|---|---|---|
| metadata | string | The name of the field in which Amazon Bedrock stores metadata about the vector store. |
| text | string | The name of the field in which Amazon Bedrock stores the raw text from your data. |
metadataField?
Type:
string
(optional)
The name of the field in which Amazon Bedrock stores metadata about the vector store.
textField?
Type:
string
(optional)
The name of the field in which Amazon Bedrock stores the raw text from your data.
The text is split according to the chunking strategy you choose.

.NET
Go
Java
Python
TypeScript