Interface CfnKnowledgeBase.EmbeddingModelConfigurationProperty

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

@Stability(Stable) public static interface CfnKnowledgeBase.EmbeddingModelConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration details for the embeddings model.

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.*;
 EmbeddingModelConfigurationProperty embeddingModelConfigurationProperty = EmbeddingModelConfigurationProperty.builder()
         .bedrockEmbeddingModelConfiguration(BedrockEmbeddingModelConfigurationProperty.builder()
                 .dimensions(123)
                 .build())
         .build();
 

See Also: