Interface CfnKnowledgeBasePropsMixin.OpenSearchManagedClusterConfigurationProperty

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

@Stability(Stable) public static interface CfnKnowledgeBasePropsMixin.OpenSearchManagedClusterConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains details about the Managed Cluster configuration of the knowledge base in Amazon OpenSearch Service.

For more information, see Create a vector index in OpenSearch Managed Cluster .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.bedrock.*;
 OpenSearchManagedClusterConfigurationProperty openSearchManagedClusterConfigurationProperty = OpenSearchManagedClusterConfigurationProperty.builder()
         .domainArn("domainArn")
         .domainEndpoint("domainEndpoint")
         .fieldMapping(OpenSearchManagedClusterFieldMappingProperty.builder()
                 .metadataField("metadataField")
                 .textField("textField")
                 .vectorField("vectorField")
                 .build())
         .vectorIndexName("vectorIndexName")
         .build();
 

See Also: