Class: Aws::S3Vectors::Types::MetadataConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Vectors::Types::MetadataConfiguration
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3vectors/types.rb
Overview
The metadata configuration for a vector index.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#non_filterable_metadata_keys ⇒ Array<String>
Non-filterable metadata keys allow you to enrich vectors with additional context during storage and retrieval.
Instance Attribute Details
#non_filterable_metadata_keys ⇒ Array<String>
Non-filterable metadata keys allow you to enrich vectors with additional context during storage and retrieval. Unlike default metadata keys, these keys can’t be used as query filters. Non-filterable metadata keys can be retrieved but can’t be searched, queried, or filtered. You can access non-filterable metadata keys of your vectors after finding the vectors. For more information about non-filterable metadata keys, see [Vectors] and [Limitations and restrictions] in the *Amazon S3 User Guide*.
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/s3-vectors-vectors.html [2]: docs.aws.amazon.com/AmazonS3/latest/userguide/s3-vectors-limitations.html
924 925 926 927 928 |
# File 'lib/aws-sdk-s3vectors/types.rb', line 924 class MetadataConfiguration < Struct.new( :non_filterable_metadata_keys) SENSITIVE = [] include Aws::Structure end |