Class: Aws::Kendra::Types::FeaturedResultsConflictException
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::FeaturedResultsConflictException
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kendra/types.rb
Overview
An error message with a list of conflicting queries used across different sets of featured results. This occurred with the request for a new featured results set. Check that the queries you specified for featured results are unique per featured results set for each index.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#conflicting_items ⇒ Array<Types::ConflictingItem>
A list of the conflicting queries, including the query text, the name for the featured results set, and the identifier of the featured results set.
-
#message ⇒ String
An explanation for the conflicting queries.
Instance Attribute Details
#conflicting_items ⇒ Array<Types::ConflictingItem>
A list of the conflicting queries, including the query text, the name for the featured results set, and the identifier of the featured results set.
5383 5384 5385 5386 5387 5388 |
# File 'lib/aws-sdk-kendra/types.rb', line 5383 class FeaturedResultsConflictException < Struct.new( :message, :conflicting_items) SENSITIVE = [] include Aws::Structure end |
#message ⇒ String
An explanation for the conflicting queries.
5383 5384 5385 5386 5387 5388 |
# File 'lib/aws-sdk-kendra/types.rb', line 5383 class FeaturedResultsConflictException < Struct.new( :message, :conflicting_items) SENSITIVE = [] include Aws::Structure end |