Class: Aws::Textract::Types::Warning

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

Overview

A warning about an issue that occurred during asynchronous text analysis (StartDocumentAnalysis) or asynchronous document text detection (StartDocumentTextDetection).

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

The error code for the warning.

Returns:

  • (String)


1145
1146
1147
1148
1149
# File 'lib/aws-sdk-textract/types.rb', line 1145

class Warning < Struct.new(
  :error_code,
  :pages)
  include Aws::Structure
end

#pagesArray<Integer>

A list of the pages that the warning applies to.

Returns:

  • (Array<Integer>)


1145
1146
1147
1148
1149
# File 'lib/aws-sdk-textract/types.rb', line 1145

class Warning < Struct.new(
  :error_code,
  :pages)
  include Aws::Structure
end