// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`BatchDetectTargetedSentiment`](crate::operation::batch_detect_targeted_sentiment::builders::BatchDetectTargetedSentimentFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`text_list(Vec<String>)`](crate::operation::batch_detect_targeted_sentiment::builders::BatchDetectTargetedSentimentFluentBuilder::text_list) / [`set_text_list(Option<Vec<String>>)`](crate::operation::batch_detect_targeted_sentiment::builders::BatchDetectTargetedSentimentFluentBuilder::set_text_list): <p>A list containing the UTF-8 encoded text of the input documents. The list can contain a maximum of 25 documents. The maximum size of each document is 5 KB.</p>
/// - [`language_code(LanguageCode)`](crate::operation::batch_detect_targeted_sentiment::builders::BatchDetectTargetedSentimentFluentBuilder::language_code) / [`set_language_code(Option<LanguageCode>)`](crate::operation::batch_detect_targeted_sentiment::builders::BatchDetectTargetedSentimentFluentBuilder::set_language_code): <p>The language of the input documents. Currently, English is the only supported language.</p>
/// - On success, responds with [`BatchDetectTargetedSentimentOutput`](crate::operation::batch_detect_targeted_sentiment::BatchDetectTargetedSentimentOutput) with field(s):
/// - [`result_list(Option<Vec<BatchDetectTargetedSentimentItemResult>>)`](crate::operation::batch_detect_targeted_sentiment::BatchDetectTargetedSentimentOutput::result_list): <p>A list of objects containing the results of the operation. The results are sorted in ascending order by the <code>Index</code> field and match the order of the documents in the input list. If all of the documents contain an error, the <code>ResultList</code> is empty.</p>
/// - [`error_list(Option<Vec<BatchItemError>>)`](crate::operation::batch_detect_targeted_sentiment::BatchDetectTargetedSentimentOutput::error_list): <p>List of errors that the operation can return.</p>
/// - On failure, responds with [`SdkError<BatchDetectTargetedSentimentError>`](crate::operation::batch_detect_targeted_sentiment::BatchDetectTargetedSentimentError)
pub fn batch_detect_targeted_sentiment(&self) -> crate::operation::batch_detect_targeted_sentiment::builders::BatchDetectTargetedSentimentFluentBuilder{
crate::operation::batch_detect_targeted_sentiment::builders::BatchDetectTargetedSentimentFluentBuilder::new(self.handle.clone())
}
}