interface EmbeddingModelConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnKnowledgeBasePropsMixin.EmbeddingModelConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnKnowledgeBasePropsMixin_EmbeddingModelConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnKnowledgeBasePropsMixin.EmbeddingModelConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnKnowledgeBasePropsMixin.EmbeddingModelConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const embeddingModelConfigurationProperty: bedrock.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