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)


11135
11136
11137
11138
11139
11140
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 11135

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

#messageString

The message that explains the problem with the query.

Returns:

  • (String)


11135
11136
11137
11138
11139
11140
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 11135

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