#[non_exhaustive]pub struct BatchDetectSyntaxInput { /* private fields */ }Implementations§
source§impl BatchDetectSyntaxInput
impl BatchDetectSyntaxInput
sourcepub fn text_list(&self) -> Option<&[String]>
pub fn text_list(&self) -> Option<&[String]>
A list containing the UTF-8 encoded text of the input documents. The list can contain a maximum of 25 documents. The maximum size for each document is 5 KB.
sourcepub fn language_code(&self) -> Option<&SyntaxLanguageCode>
pub fn language_code(&self) -> Option<&SyntaxLanguageCode>
The language of the input documents. You can specify any of the following languages supported by Amazon Comprehend: German ("de"), English ("en"), Spanish ("es"), French ("fr"), Italian ("it"), or Portuguese ("pt"). All documents must be in the same language.
source§impl BatchDetectSyntaxInput
impl BatchDetectSyntaxInput
sourcepub fn builder() -> BatchDetectSyntaxInputBuilder
pub fn builder() -> BatchDetectSyntaxInputBuilder
Creates a new builder-style object to manufacture BatchDetectSyntaxInput.
source§impl BatchDetectSyntaxInput
impl BatchDetectSyntaxInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<BatchDetectSyntax, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<BatchDetectSyntax, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<BatchDetectSyntax>
Trait Implementations§
source§impl Clone for BatchDetectSyntaxInput
impl Clone for BatchDetectSyntaxInput
source§fn clone(&self) -> BatchDetectSyntaxInput
fn clone(&self) -> BatchDetectSyntaxInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for BatchDetectSyntaxInput
impl Debug for BatchDetectSyntaxInput
source§impl PartialEq<BatchDetectSyntaxInput> for BatchDetectSyntaxInput
impl PartialEq<BatchDetectSyntaxInput> for BatchDetectSyntaxInput
source§fn eq(&self, other: &BatchDetectSyntaxInput) -> bool
fn eq(&self, other: &BatchDetectSyntaxInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchDetectSyntaxInput
Auto Trait Implementations§
impl RefUnwindSafe for BatchDetectSyntaxInput
impl Send for BatchDetectSyntaxInput
impl Sync for BatchDetectSyntaxInput
impl Unpin for BatchDetectSyntaxInput
impl UnwindSafe for BatchDetectSyntaxInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more