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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-textract/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).

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

The error code for the warning.

Returns:

  • (String)


3218
3219
3220
3221
3222
3223
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 3218

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

#pagesArray<Integer>

A list of the pages that the warning applies to.

Returns:

  • (Array<Integer>)


3218
3219
3220
3221
3222
3223
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 3218

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