Interface CfnKnowledgeBase.RdsFieldMappingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnKnowledgeBase.RdsFieldMappingProperty.Jsii$Proxy
- Enclosing class:
CfnKnowledgeBase
@Stability(Stable)
public static interface CfnKnowledgeBase.RdsFieldMappingProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrock.*; RdsFieldMappingProperty rdsFieldMappingProperty = RdsFieldMappingProperty.builder() .metadataField("metadataField") .primaryKeyField("primaryKeyField") .textField("textField") .vectorField("vectorField") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnKnowledgeBase.RdsFieldMappingProperty
static final class
An implementation forCfnKnowledgeBase.RdsFieldMappingProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the field in which Amazon Bedrock stores metadata about the vector store.The name of the field in which Amazon Bedrock stores the ID for each entry.The name of the field in which Amazon Bedrock stores the raw text from your data.The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMetadataField
The name of the field in which Amazon Bedrock stores metadata about the vector store.- See Also:
-
getPrimaryKeyField
The name of the field in which Amazon Bedrock stores the ID for each entry.- See Also:
-
getTextField
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.
- See Also:
-
getVectorField
The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.- See Also:
-
builder
-