#[non_exhaustive]pub struct AnalyzeDocumentInputBuilder { /* private fields */ }
Expand description
A builder for AnalyzeDocumentInput
.
Implementations§
source§impl AnalyzeDocumentInputBuilder
impl AnalyzeDocumentInputBuilder
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 get_document(&self) -> &Option<Document>
pub fn get_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, 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. 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
).
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. 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
).
sourcepub fn get_feature_types(&self) -> &Option<Vec<FeatureType>>
pub fn get_feature_types(&self) -> &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
).
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 get_human_loop_config(&self) -> &Option<HumanLoopConfig>
pub fn get_human_loop_config(&self) -> &Option<HumanLoopConfig>
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 get_queries_config(&self) -> &Option<QueriesConfig>
pub fn get_queries_config(&self) -> &Option<QueriesConfig>
Contains Queries and the alias for those Queries, as determined by the input.
sourcepub fn adapters_config(self, input: AdaptersConfig) -> Self
pub fn adapters_config(self, input: AdaptersConfig) -> Self
Specifies the adapter to be used when analyzing a document.
sourcepub fn set_adapters_config(self, input: Option<AdaptersConfig>) -> Self
pub fn set_adapters_config(self, input: Option<AdaptersConfig>) -> Self
Specifies the adapter to be used when analyzing a document.
sourcepub fn get_adapters_config(&self) -> &Option<AdaptersConfig>
pub fn get_adapters_config(&self) -> &Option<AdaptersConfig>
Specifies the adapter to be used when analyzing a document.
sourcepub fn build(self) -> Result<AnalyzeDocumentInput, BuildError>
pub fn build(self) -> Result<AnalyzeDocumentInput, BuildError>
Consumes the builder and constructs a AnalyzeDocumentInput
.
source§impl AnalyzeDocumentInputBuilder
impl AnalyzeDocumentInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<AnalyzeDocumentOutput, SdkError<AnalyzeDocumentError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<AnalyzeDocumentOutput, SdkError<AnalyzeDocumentError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for AnalyzeDocumentInputBuilder
impl Clone for AnalyzeDocumentInputBuilder
source§fn clone(&self) -> AnalyzeDocumentInputBuilder
fn clone(&self) -> AnalyzeDocumentInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AnalyzeDocumentInputBuilder
impl Debug for AnalyzeDocumentInputBuilder
source§impl Default for AnalyzeDocumentInputBuilder
impl Default for AnalyzeDocumentInputBuilder
source§fn default() -> AnalyzeDocumentInputBuilder
fn default() -> AnalyzeDocumentInputBuilder
source§impl PartialEq for AnalyzeDocumentInputBuilder
impl PartialEq for AnalyzeDocumentInputBuilder
source§fn eq(&self, other: &AnalyzeDocumentInputBuilder) -> bool
fn eq(&self, other: &AnalyzeDocumentInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.