interface EmbeddingModelConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnKnowledgeBasePropsMixin.EmbeddingModelConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnKnowledgeBasePropsMixin_EmbeddingModelConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnKnowledgeBasePropsMixin.EmbeddingModelConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnKnowledgeBasePropsMixin.EmbeddingModelConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnKnowledgeBasePropsMixin » EmbeddingModelConfigurationProperty |
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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const embeddingModelConfigurationProperty: bedrock_mixins.CfnKnowledgeBasePropsMixin.EmbeddingModelConfigurationProperty = {
bedrockEmbeddingModelConfiguration: {
audio: [{
segmentationConfiguration: {
fixedLengthDuration: 123,
},
}],
dimensions: 123,
embeddingDataType: 'embeddingDataType',
video: [{
segmentationConfiguration: {
fixedLengthDuration: 123,
},
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bedrock | IResolvable | Bedrock | The vector configuration details on the Bedrock embeddings model. |
bedrockEmbeddingModelConfiguration?
Type:
IResolvable | Bedrock
(optional)
The vector configuration details on the Bedrock embeddings model.

.NET
Go
Java
Python
TypeScript