Class: Aws::Comprehend::Types::WarningsListItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::WarningsListItem
- 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
-
#page ⇒ Integer
Page number in the input document.
-
#warn_code ⇒ String
The type of warning.
-
#warn_message ⇒ String
Text message associated with the warning.
Instance Attribute Details
#page ⇒ Integer
Page number in the input document.
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_code ⇒ String
The type of warning.
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_message ⇒ String
Text message associated with the warning.
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 |