Interface: ExistingAmazonAuroraVectorStoreProps
March 19, 2026 ยท View on GitHub
@cdklabs/generative-ai-cdk-constructs
@cdklabs/generative-ai-cdk-constructs / amazonaurora / ExistingAmazonAuroraVectorStoreProps
Interface: ExistingAmazonAuroraVectorStoreProps
Properties for an existing Aurora Vector Store.
You database must have TCP/IP port that the
database will use for application connections
set up for 5432.
Extends
Properties
auroraSecurityGroup
readonlyauroraSecurityGroup:ISecurityGroup
The Security group associated with the RDS Aurora instance. This security group allows access to the Aurora Vector Store from Lambda's custom resource running pgVector SQL commands.
clusterIdentifier
readonlyclusterIdentifier:string
The unique cluster identifier of your Aurora RDS cluster.
databaseName
readonlydatabaseName:string
The name of the database for the Aurora Vector Store.
embeddingsModelVectorDimension
readonlyembeddingsModelVectorDimension:number
The embeddings model dimension used for the Aurora Vector Store. The vector dimensions of the model must match the dimensions used in the KnowledgeBase construct.
Inherited from
BaseAuroraVectorStoreProps.embeddingsModelVectorDimension
metadataField?
readonlyoptionalmetadataField?:string
The field name for the metadata column in the Aurora Vector Store.
Inherited from
BaseAuroraVectorStoreProps.metadataField
primaryKeyField?
readonlyoptionalprimaryKeyField?:string
The primary key field for the Aurora Vector Store table.
Inherited from
BaseAuroraVectorStoreProps.primaryKeyField
schemaName?
readonlyoptionalschemaName?:string
The schema name for the Aurora Vector Store.
Inherited from
BaseAuroraVectorStoreProps.schemaName
secret
readonlysecret:ISecret
The secret containing the database credentials.
The secret must contain host, port, username,
password and dbname values.
tableName?
readonlyoptionaltableName?:string
The name of the table for the Aurora Vector Store.
Inherited from
BaseAuroraVectorStoreProps.tableName
textField?
readonlyoptionaltextField?:string
The field name for the text column in the Aurora Vector Store.
Inherited from
BaseAuroraVectorStoreProps.textField
vectorField?
readonlyoptionalvectorField?:string
The field name for the vector column in the Aurora Vector Store.
Inherited from
BaseAuroraVectorStoreProps.vectorField
vpc
readonlyvpc:IVpc
The VPC in which the existing Aurora Vector Store is located.