Interface CfnKnowledgeBase.OpenSearchServerlessConfigurationProperty

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

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

For more information, see Create a vector index in Amazon OpenSearch Service .

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.*;
 OpenSearchServerlessConfigurationProperty openSearchServerlessConfigurationProperty = OpenSearchServerlessConfigurationProperty.builder()
         .collectionArn("collectionArn")
         .fieldMapping(OpenSearchServerlessFieldMappingProperty.builder()
                 .metadataField("metadataField")
                 .textField("textField")
                 .vectorField("vectorField")
                 .build())
         .vectorIndexName("vectorIndexName")
         .build();
 

See Also: