We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27e91da commit cd9ef1aCopy full SHA for cd9ef1a
packages/cdk/resources/OpenSearchResources.ts
@@ -10,7 +10,6 @@ export interface OpenSearchResourcesProps {
10
readonly stackName: string
11
readonly bedrockExecutionRole: Role
12
readonly region: string
13
- readonly collectionName?: string
14
}
15
16
export class OpenSearchResources extends Construct {
@@ -21,7 +20,6 @@ export class OpenSearchResources extends Construct {
21
20
22
// Create the OpenSearch Serverless collection using L2 construct
23
this.collection = new VectorCollection(this, "Collection", {
24
- collectionName: props.collectionName ?? `${props.stackName}-vector-db`,
25
description: "EPS Assist Vector Store",
26
standbyReplicas: VectorCollectionStandbyReplicas.DISABLED
27
})
0 commit comments