Class: Aws::Textract::Types::IdentityDocument

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

Overview

The structure that lists each document processed in an AnalyzeID operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#document_indexInteger

Denotes the placement of a document in the IdentityDocument list. The first document is marked 1, the second 2 and so on.

Returns:

  • (Integer)


1197
1198
1199
1200
1201
1202
# File 'lib/aws-sdk-textract/types.rb', line 1197

class IdentityDocument < Struct.new(
  :document_index,
  :identity_document_fields)
  SENSITIVE = []
  include Aws::Structure
end

#identity_document_fieldsArray<Types::IdentityDocumentField>

The structure used to record information extracted from identity documents. Contains both normalized field and value of the extracted text.

Returns:



1197
1198
1199
1200
1201
1202
# File 'lib/aws-sdk-textract/types.rb', line 1197

class IdentityDocument < Struct.new(
  :document_index,
  :identity_document_fields)
  SENSITIVE = []
  include Aws::Structure
end