Class: Aws::Comprehend::Types::WarningsListItem

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-comprehend/types.rb

Overview

The system identified one of the following warnings while processing the input document:

  • The document to classify is plain text, but the classifier is a native document model.

  • The document to classify is semi-structured, but the classifier is a plain-text model.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#pageInteger

Page number in the input document.

Returns:

  • (Integer)


8957
8958
8959
8960
8961
8962
8963
# File 'lib/aws-sdk-comprehend/types.rb', line 8957

class WarningsListItem < Struct.new(
  :page,
  :warn_code,
  :warn_message)
  SENSITIVE = []
  include Aws::Structure
end

#warn_codeString

The type of warning.

Returns:

  • (String)


8957
8958
8959
8960
8961
8962
8963
# File 'lib/aws-sdk-comprehend/types.rb', line 8957

class WarningsListItem < Struct.new(
  :page,
  :warn_code,
  :warn_message)
  SENSITIVE = []
  include Aws::Structure
end

#warn_messageString

Text message associated with the warning.

Returns:

  • (String)


8957
8958
8959
8960
8961
8962
8963
# File 'lib/aws-sdk-comprehend/types.rb', line 8957

class WarningsListItem < Struct.new(
  :page,
  :warn_code,
  :warn_message)
  SENSITIVE = []
  include Aws::Structure
end