Class: Aws::Kendra::Types::Warning

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

Overview

The warning code and message that explains a problem with a query.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

The code used to show the type of warning for the query.

Returns:

  • (String)


11238
11239
11240
11241
11242
11243
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 11238

class Warning < Struct.new(
  :message,
  :code)
  SENSITIVE = []
  include Aws::Structure
end

#messageString

The message that explains the problem with the query.

Returns:

  • (String)


11238
11239
11240
11241
11242
11243
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 11238

class Warning < Struct.new(
  :message,
  :code)
  SENSITIVE = []
  include Aws::Structure
end