#[non_exhaustive]pub struct AnalyzeDocumentInput {
pub document: Option<Document>,
pub feature_types: Option<Vec<FeatureType>>,
pub human_loop_config: Option<HumanLoopConfig>,
pub queries_config: Option<QueriesConfig>,
pub adapters_config: Option<AdaptersConfig>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.document: Option<Document>
The input document as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI to call Amazon Textract operations, you can't pass image bytes. The document must be an image in JPEG, PNG, PDF, or TIFF format.
If you're using an AWS SDK to call Amazon Textract, you might not need to base64-encode image bytes that are passed using the Bytes
field.
feature_types: Option<Vec<FeatureType>>
A list of the types of analysis to perform. Add TABLES to the list to return information about the tables that are detected in the input document. Add FORMS to return detected form data. Add SIGNATURES to return the locations of detected signatures. Add LAYOUT to the list to return information about the layout of the document. All lines and words detected in the document are included in the response (including text that isn't related to the value of FeatureTypes
).
human_loop_config: Option<HumanLoopConfig>
Sets the configuration for the human in the loop workflow for analyzing documents.
queries_config: Option<QueriesConfig>
Contains Queries and the alias for those Queries, as determined by the input.
adapters_config: Option<AdaptersConfig>
Specifies the adapter to be used when analyzing a document.
Implementations§
source§impl AnalyzeDocumentInput
impl AnalyzeDocumentInput
sourcepub fn document(&self) -> Option<&Document>
pub fn document(&self) -> Option<&Document>
The input document as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI to call Amazon Textract operations, you can't pass image bytes. The document must be an image in JPEG, PNG, PDF, or TIFF format.
If you're using an AWS SDK to call Amazon Textract, you might not need to base64-encode image bytes that are passed using the Bytes
field.
sourcepub fn feature_types(&self) -> &[FeatureType]
pub fn feature_types(&self) -> &[FeatureType]
A list of the types of analysis to perform. Add TABLES to the list to return information about the tables that are detected in the input document. Add FORMS to return detected form data. Add SIGNATURES to return the locations of detected signatures. Add LAYOUT to the list to return information about the layout of the document. All lines and words detected in the document are included in the response (including text that isn't related to the value of FeatureTypes
).
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .feature_types.is_none()
.
sourcepub fn human_loop_config(&self) -> Option<&HumanLoopConfig>
pub fn human_loop_config(&self) -> Option<&HumanLoopConfig>
Sets the configuration for the human in the loop workflow for analyzing documents.
sourcepub fn queries_config(&self) -> Option<&QueriesConfig>
pub fn queries_config(&self) -> Option<&QueriesConfig>
Contains Queries and the alias for those Queries, as determined by the input.
sourcepub fn adapters_config(&self) -> Option<&AdaptersConfig>
pub fn adapters_config(&self) -> Option<&AdaptersConfig>
Specifies the adapter to be used when analyzing a document.
source§impl AnalyzeDocumentInput
impl AnalyzeDocumentInput
sourcepub fn builder() -> AnalyzeDocumentInputBuilder
pub fn builder() -> AnalyzeDocumentInputBuilder
Creates a new builder-style object to manufacture AnalyzeDocumentInput
.
Trait Implementations§
source§impl Clone for AnalyzeDocumentInput
impl Clone for AnalyzeDocumentInput
source§fn clone(&self) -> AnalyzeDocumentInput
fn clone(&self) -> AnalyzeDocumentInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AnalyzeDocumentInput
impl Debug for AnalyzeDocumentInput
source§impl PartialEq for AnalyzeDocumentInput
impl PartialEq for AnalyzeDocumentInput
source§fn eq(&self, other: &AnalyzeDocumentInput) -> bool
fn eq(&self, other: &AnalyzeDocumentInput) -> bool
self
and other
values to be equal, and is used
by ==
.