Class: Aws::Textract::Types::DocumentGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::DocumentGroup
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-textract/types.rb
Overview
Summary information about documents grouped by the same document type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#detected_signatures ⇒ Array<Types::DetectedSignature>
A list of the detected signatures found in a document group.
-
#split_documents ⇒ Array<Types::SplitDocument>
An array that contains information about the pages of a document, defined by logical boundary.
-
#type ⇒ String
The type of document that Amazon Textract has detected.
-
#undetected_signatures ⇒ Array<Types::UndetectedSignature>
A list of any expected signatures not found in a document group.
Instance Attribute Details
#detected_signatures ⇒ Array<Types::DetectedSignature>
A list of the detected signatures found in a document group.
1013 1014 1015 1016 1017 1018 1019 1020 |
# File 'lib/aws-sdk-textract/types.rb', line 1013 class DocumentGroup < Struct.new( :type, :split_documents, :detected_signatures, :undetected_signatures) SENSITIVE = [] include Aws::Structure end |
#split_documents ⇒ Array<Types::SplitDocument>
An array that contains information about the pages of a document, defined by logical boundary.
1013 1014 1015 1016 1017 1018 1019 1020 |
# File 'lib/aws-sdk-textract/types.rb', line 1013 class DocumentGroup < Struct.new( :type, :split_documents, :detected_signatures, :undetected_signatures) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of document that Amazon Textract has detected. See [Analyze Lending Response Objects] for a list of all types returned by Textract.
[1]: docs.aws.amazon.com/textract/latest/dg/lending-response-objects.html
1013 1014 1015 1016 1017 1018 1019 1020 |
# File 'lib/aws-sdk-textract/types.rb', line 1013 class DocumentGroup < Struct.new( :type, :split_documents, :detected_signatures, :undetected_signatures) SENSITIVE = [] include Aws::Structure end |
#undetected_signatures ⇒ Array<Types::UndetectedSignature>
A list of any expected signatures not found in a document group.
1013 1014 1015 1016 1017 1018 1019 1020 |
# File 'lib/aws-sdk-textract/types.rb', line 1013 class DocumentGroup < Struct.new( :type, :split_documents, :detected_signatures, :undetected_signatures) SENSITIVE = [] include Aws::Structure end |