Class: Aws::S3Vectors::Types::MetadataConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Vectors::Types::MetadataConfiguration
- Defined in:
- gems/aws-sdk-s3vectors/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.
857 858 859 860 861 |
# File 'gems/aws-sdk-s3vectors/lib/aws-sdk-s3vectors/types.rb', line 857 class MetadataConfiguration < Struct.new( :non_filterable_metadata_keys) SENSITIVE = [] include Aws::Structure end |