Interface CfnKnowledgeBase.PineconeConfigurationProperty

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

@Stability(Stable) public static interface CfnKnowledgeBase.PineconeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains details about the storage configuration of the knowledge base in Pinecone.

For more information, see Create a vector index in Pinecone .

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.*;
 PineconeConfigurationProperty pineconeConfigurationProperty = PineconeConfigurationProperty.builder()
         .connectionString("connectionString")
         .credentialsSecretArn("credentialsSecretArn")
         .fieldMapping(PineconeFieldMappingProperty.builder()
                 .metadataField("metadataField")
                 .textField("textField")
                 .build())
         // the properties below are optional
         .namespace("namespace")
         .build();
 

See Also: