Class: Aws::Kendra::Types::FacetResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::FacetResult
- Defined in:
- gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb
Overview
The facet values for the documents in the response.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#document_attribute_key ⇒ String
The key for the facet values.
-
#document_attribute_value_count_pairs ⇒ Array<Types::DocumentAttributeValueCountPair>
An array of key/value pairs, where the key is the value of the attribute and the count is the number of documents that share the key value.
-
#document_attribute_value_type ⇒ String
The data type of the facet value.
Instance Attribute Details
#document_attribute_key ⇒ String
The key for the facet values. This is the same as the
DocumentAttributeKey
provided in the query.
5216 5217 5218 5219 5220 5221 5222 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 5216 class FacetResult < Struct.new( :document_attribute_key, :document_attribute_value_type, :document_attribute_value_count_pairs) SENSITIVE = [] include Aws::Structure end |
#document_attribute_value_count_pairs ⇒ Array<Types::DocumentAttributeValueCountPair>
An array of key/value pairs, where the key is the value of the attribute and the count is the number of documents that share the key value.
5216 5217 5218 5219 5220 5221 5222 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 5216 class FacetResult < Struct.new( :document_attribute_key, :document_attribute_value_type, :document_attribute_value_count_pairs) SENSITIVE = [] include Aws::Structure end |
#document_attribute_value_type ⇒ String
The data type of the facet value. This is the same as the type defined for the index field when it was created.
5216 5217 5218 5219 5220 5221 5222 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 5216 class FacetResult < Struct.new( :document_attribute_key, :document_attribute_value_type, :document_attribute_value_count_pairs) SENSITIVE = [] include Aws::Structure end |