Class: Aws::S3Vectors::Types::MetadataConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-s3vectors/lib/aws-sdk-s3vectors/types.rb

Overview

Amazon S3 Vectors is in preview release for Amazon S3 and is subject to change.

The metadata configuration for a vector index.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#non_filterable_metadata_keysArray<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.

Returns:

  • (Array<String>)


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