Struct aws_sdk_comprehend::input::BatchDetectSyntaxInput
source · #[non_exhaustive]pub struct BatchDetectSyntaxInput { /* private fields */ }Implementations§
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>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BatchDetectSyntaxInput.
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.
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 ==.