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)
.embeddingDataType("embeddingDataType")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnKnowledgeBase.EmbeddingModelConfigurationPropertystatic final classAn implementation forCfnKnowledgeBase.EmbeddingModelConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBedrockEmbeddingModelConfiguration
The vector configuration details on the Bedrock embeddings model.Returns union: either
IResolvableorCfnKnowledgeBase.BedrockEmbeddingModelConfigurationProperty- See Also:
-
builder
-