#[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>,
}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. To perform both forms and table analysis, add TABLES and FORMS to FeatureTypes. To detect signatures within form data and table data, add SIGNATURES to either TABLES or FORMS. 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.
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) -> Option<&[FeatureType]>
pub fn feature_types(&self) -> Option<&[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. To perform both forms and table analysis, add TABLES and FORMS to FeatureTypes. To detect signatures within form data and table data, add SIGNATURES to either TABLES or FORMS. All lines and words detected in the document are included in the response (including text that isn't related to the value of FeatureTypes).
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.
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<AnalyzeDocumentInput> for AnalyzeDocumentInput
impl PartialEq<AnalyzeDocumentInput> 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 ==.