Class: Aws::Kendra::Types::FacetResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::FacetResult
- Includes:
- Structure
- Defined in:
- 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.
5097 5098 5099 5100 5101 5102 5103 |
# File 'lib/aws-sdk-kendra/types.rb', line 5097 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.
5097 5098 5099 5100 5101 5102 5103 |
# File 'lib/aws-sdk-kendra/types.rb', line 5097 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.
5097 5098 5099 5100 5101 5102 5103 |
# File 'lib/aws-sdk-kendra/types.rb', line 5097 class FacetResult < Struct.new( :document_attribute_key, :document_attribute_value_type, :document_attribute_value_count_pairs) SENSITIVE = [] include Aws::Structure end |