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
@@ -149,11 +191,12 @@ The `s3_location` configuration block supports the following arguments:
149
191
150
192
The `storage_configuration` configuration block supports the following arguments:
151
193
152
-
*`type` - (Required) Vector store service in which the knowledge base is stored. Valid Values: `OPENSEARCH_SERVERLESS`, `PINECONE`, `REDIS_ENTERPRISE_CLOUD`, `RDS`.
194
+
*`type` - (Required) Vector store service in which the knowledge base is stored. Valid Values: `OPENSEARCH_SERVERLESS`, `PINECONE`, `REDIS_ENTERPRISE_CLOUD`, `RDS`, `S3_VECTORS`.
153
195
*`opensearch_serverless_configuration` - (Optional) The storage configuration of the knowledge base in Amazon OpenSearch Service. See [`opensearch_serverless_configuration` block](#opensearch_serverless_configuration-block) for details.
154
196
*`pinecone_configuration` - (Optional) The storage configuration of the knowledge base in Pinecone. See [`pinecone_configuration` block](#pinecone_configuration-block) for details.
155
197
*`rds_configuration` - (Optional) Details about the storage configuration of the knowledge base in Amazon RDS. For more information, see [Create a vector index in Amazon RDS](https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup.html). See [`rds_configuration` block](#rds_configuration-block) for details.
156
198
*`redis_enterprise_cloud_configuration` - (Optional) The storage configuration of the knowledge base in Redis Enterprise Cloud. See [`redis_enterprise_cloud_configuration` block](#redis_enterprise_cloud_configuration-block) for details.
199
+
*`s3_vectors_configuration` - (Optional) The storage configuration of the knowledge base in Amazon S3 Vectors. See [`s3_vectors_configuration` block](#s3_vectors_configuration-block) for details.
157
200
158
201
### `opensearch_serverless_configuration` block
159
202
@@ -204,6 +247,15 @@ The `redis_enterprise_cloud_configuration` configuration block supports the foll
204
247
*`vector_field` - (Required) Name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.
205
248
*`vector_index_name` - (Required) Name of the vector index.
206
249
250
+
### `s3_vectors_configuration` block
251
+
252
+
The `s3_vectors_configuration` configuration block supports the following arguments.
253
+
Either `index_arn`, or both `index_name` and `vector_bucket_arn` must be specified.
254
+
255
+
*`index_arn` - (Optional) ARN of the S3 Vectors index. Conflicts with `index_name` and `vector_bucket_arn`.
256
+
*`index_name` - (Optional) Name of the S3 Vectors index. Must be specified with `vector_bucket_arn`. Conflicts with `index_arn`.
257
+
*`vector_bucket_arn` - (Optional) ARN of the S3 Vectors vector bucket. Must be specified with `index_name`. Conflicts with `index_arn`.
258
+
207
259
## Attribute Reference
208
260
209
261
This resource exports the following attributes in addition to the arguments above:
0 commit comments