Struct aws_sdk_textract::input::analyze_document_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for AnalyzeDocumentInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn document(self, input: Document) -> Self
pub fn document(self, input: Document) -> Self
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 set_document(self, input: Option<Document>) -> Self
pub fn set_document(self, input: Option<Document>) -> Self
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, input: FeatureType) -> Self
pub fn feature_types(self, input: FeatureType) -> Self
Appends an item to feature_types
.
To override the contents of this collection use set_feature_types
.
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 set_feature_types(self, input: Option<Vec<FeatureType>>) -> Self
pub fn set_feature_types(self, input: Option<Vec<FeatureType>>) -> Self
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, input: HumanLoopConfig) -> Self
pub fn human_loop_config(self, input: HumanLoopConfig) -> Self
Sets the configuration for the human in the loop workflow for analyzing documents.
sourcepub fn set_human_loop_config(self, input: Option<HumanLoopConfig>) -> Self
pub fn set_human_loop_config(self, input: Option<HumanLoopConfig>) -> Self
Sets the configuration for the human in the loop workflow for analyzing documents.
sourcepub fn queries_config(self, input: QueriesConfig) -> Self
pub fn queries_config(self, input: QueriesConfig) -> Self
Contains Queries and the alias for those Queries, as determined by the input.
sourcepub fn set_queries_config(self, input: Option<QueriesConfig>) -> Self
pub fn set_queries_config(self, input: Option<QueriesConfig>) -> Self
Contains Queries and the alias for those Queries, as determined by the input.
sourcepub fn build(self) -> Result<AnalyzeDocumentInput, BuildError>
pub fn build(self) -> Result<AnalyzeDocumentInput, BuildError>
Consumes the builder and constructs a AnalyzeDocumentInput
.