Interface CfnKnowledgeBase.OpenSearchServerlessFieldMappingProperty

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

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

See Also: