Struct aws_sdk_comprehend::model::InputDataConfig
source · [−]#[non_exhaustive]pub struct InputDataConfig { /* private fields */ }Expand description
The input properties for an inference job.
Implementations
sourceimpl InputDataConfig
impl InputDataConfig
sourcepub fn s3_uri(&self) -> Option<&str>
pub fn s3_uri(&self) -> Option<&str>
The Amazon S3 URI for the input data. The URI must be in same region as the API endpoint that you are calling. The URI can point to a single input file or it can provide the prefix for a collection of data files.
For example, if you use the URI S3://bucketName/prefix, if the prefix is a single file, Amazon Comprehend uses that file as input. If more than one file begins with the prefix, Amazon Comprehend uses all of them as input.
sourcepub fn input_format(&self) -> Option<&InputFormat>
pub fn input_format(&self) -> Option<&InputFormat>
Specifies how the text in an input file should be processed:
-
ONE_DOC_PER_FILE- Each file is considered a separate document. Use this option when you are processing large documents, such as newspaper articles or scientific papers. -
ONE_DOC_PER_LINE- Each line in a file is considered a separate document. Use this option when you are processing many short documents, such as text messages.
sourcepub fn document_reader_config(&self) -> Option<&DocumentReaderConfig>
pub fn document_reader_config(&self) -> Option<&DocumentReaderConfig>
The document reader config field applies only for InputDataConfig of StartEntitiesDetectionJob.
Use DocumentReaderConfig to provide specifications about how you want your inference documents read. Currently it applies for PDF documents in StartEntitiesDetectionJob custom inference.
sourceimpl InputDataConfig
impl InputDataConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InputDataConfig.
Trait Implementations
sourceimpl Clone for InputDataConfig
impl Clone for InputDataConfig
sourcefn clone(&self) -> InputDataConfig
fn clone(&self) -> InputDataConfig
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more