Interface CfnKnowledgeBase.PineconeFieldMappingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnKnowledgeBase.PineconeFieldMappingProperty.Jsii$Proxy
Enclosing class:
CfnKnowledgeBase

@Stability(Stable) public static interface CfnKnowledgeBase.PineconeFieldMappingProperty 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.*;
 PineconeFieldMappingProperty pineconeFieldMappingProperty = PineconeFieldMappingProperty.builder()
         .metadataField("metadataField")
         .textField("textField")
         .build();
 

See Also: