Struct aws_sdk_textract::input::AnalyzeDocumentInput
source · #[non_exhaustive]pub struct AnalyzeDocumentInput { /* private fields */ }
Implementations§
source§impl AnalyzeDocumentInput
impl AnalyzeDocumentInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AnalyzeDocument, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AnalyzeDocument, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<AnalyzeDocument
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AnalyzeDocumentInput
.
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.
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 ==
.