Class: Aws::Textract::Types::IdentityDocument
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::IdentityDocument
- 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
-
#blocks ⇒ Array<Types::Block>
Individual word recognition, as returned by document detection.
-
#document_index ⇒ Integer
Denotes the placement of a document in the IdentityDocument list.
-
#identity_document_fields ⇒ Array<Types::IdentityDocumentField>
The structure used to record information extracted from identity documents.
Instance Attribute Details
#blocks ⇒ Array<Types::Block>
Individual word recognition, as returned by document detection.
1983 1984 1985 1986 1987 1988 1989 |
# File 'lib/aws-sdk-textract/types.rb', line 1983 class IdentityDocument < Struct.new( :document_index, :identity_document_fields, :blocks) SENSITIVE = [] include Aws::Structure end |
#document_index ⇒ Integer
Denotes the placement of a document in the IdentityDocument list. The first document is marked 1, the second 2 and so on.
1983 1984 1985 1986 1987 1988 1989 |
# File 'lib/aws-sdk-textract/types.rb', line 1983 class IdentityDocument < Struct.new( :document_index, :identity_document_fields, :blocks) SENSITIVE = [] include Aws::Structure end |
#identity_document_fields ⇒ Array<Types::IdentityDocumentField>
The structure used to record information extracted from identity documents. Contains both normalized field and value of the extracted text.
1983 1984 1985 1986 1987 1988 1989 |
# File 'lib/aws-sdk-textract/types.rb', line 1983 class IdentityDocument < Struct.new( :document_index, :identity_document_fields, :blocks) SENSITIVE = [] include Aws::Structure end |