You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* <p>Contains the names of the fields to which to map information about the vector store.</p>
3244
+
* @public
3245
+
*/
3246
+
exportinterfaceMongoDbAtlasFieldMapping{
3247
+
/**
3248
+
* <p>The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.</p>
3249
+
* @public
3250
+
*/
3251
+
vectorField: string|undefined;
3252
+
3253
+
/**
3254
+
* <p>The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split according to the chunking strategy you choose.</p>
3255
+
* @public
3256
+
*/
3257
+
textField: string|undefined;
3258
+
3259
+
/**
3260
+
* <p>The name of the field in which Amazon Bedrock stores metadata about the vector store.</p>
3261
+
* @public
3262
+
*/
3263
+
metadataField: string|undefined;
3264
+
}
3265
+
3266
+
/**
3267
+
* <p>Contains details about the storage configuration of the knowledge base in MongoDB Atlas. </p>
3268
+
* @public
3269
+
*/
3270
+
exportinterfaceMongoDbAtlasConfiguration{
3271
+
/**
3272
+
* <p>The endpoint URL of your MongoDB Atlas cluster for your knowledge base.</p>
3273
+
* @public
3274
+
*/
3275
+
endpoint: string|undefined;
3276
+
3277
+
/**
3278
+
* <p>The database name in your MongoDB Atlas cluster for your knowledge base.</p>
3279
+
* @public
3280
+
*/
3281
+
databaseName: string|undefined;
3282
+
3283
+
/**
3284
+
* <p>The collection name of the knowledge base in MongoDB Atlas.</p>
3285
+
* @public
3286
+
*/
3287
+
collectionName: string|undefined;
3288
+
3289
+
/**
3290
+
* <p>The name of the MongoDB Atlas vector search index.</p>
3291
+
* @public
3292
+
*/
3293
+
vectorIndexName: string|undefined;
3294
+
3295
+
/**
3296
+
* <p>The Amazon Resource Name (ARN) of the secret that you created in Secrets Manager that contains user credentials for your MongoDB Atlas cluster.</p>
3297
+
* @public
3298
+
*/
3299
+
credentialsSecretArn: string|undefined;
3300
+
3301
+
/**
3302
+
* <p>Contains the names of the fields to which to map information about the vector store.</p>
3303
+
* @public
3304
+
*/
3305
+
fieldMapping: MongoDbAtlasFieldMapping|undefined;
3306
+
3307
+
/**
3308
+
* <p>The name of the VPC endpoint service in your account that is connected to your MongoDB Atlas cluster.</p>
3309
+
* @public
3310
+
*/
3311
+
endpointServiceName?: string;
3312
+
}
3313
+
3242
3314
/**
3243
3315
* <p>Contains the names of the fields to which to map information about the vector store.</p>
0 commit comments