aws_sdk_quicksight/client/batch_delete_topic_reviewed_answer.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`BatchDeleteTopicReviewedAnswer`](crate::operation::batch_delete_topic_reviewed_answer::builders::BatchDeleteTopicReviewedAnswerFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`aws_account_id(impl Into<String>)`](crate::operation::batch_delete_topic_reviewed_answer::builders::BatchDeleteTopicReviewedAnswerFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::batch_delete_topic_reviewed_answer::builders::BatchDeleteTopicReviewedAnswerFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that you want to delete a reviewed answers in.</p><br>
7 /// - [`topic_id(impl Into<String>)`](crate::operation::batch_delete_topic_reviewed_answer::builders::BatchDeleteTopicReviewedAnswerFluentBuilder::topic_id) / [`set_topic_id(Option<String>)`](crate::operation::batch_delete_topic_reviewed_answer::builders::BatchDeleteTopicReviewedAnswerFluentBuilder::set_topic_id):<br>required: **true**<br><p>The ID for the topic reviewed answer that you want to delete. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p><br>
8 /// - [`answer_ids(impl Into<String>)`](crate::operation::batch_delete_topic_reviewed_answer::builders::BatchDeleteTopicReviewedAnswerFluentBuilder::answer_ids) / [`set_answer_ids(Option<Vec::<String>>)`](crate::operation::batch_delete_topic_reviewed_answer::builders::BatchDeleteTopicReviewedAnswerFluentBuilder::set_answer_ids):<br>required: **false**<br><p>The Answer IDs of the Answers to be deleted.</p><br>
9 /// - On success, responds with [`BatchDeleteTopicReviewedAnswerOutput`](crate::operation::batch_delete_topic_reviewed_answer::BatchDeleteTopicReviewedAnswerOutput) with field(s):
10 /// - [`topic_id(Option<String>)`](crate::operation::batch_delete_topic_reviewed_answer::BatchDeleteTopicReviewedAnswerOutput::topic_id): <p>The ID of the topic reviewed answer that you want to delete. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
11 /// - [`topic_arn(Option<String>)`](crate::operation::batch_delete_topic_reviewed_answer::BatchDeleteTopicReviewedAnswerOutput::topic_arn): <p>The Amazon Resource Name (ARN) of the topic.</p>
12 /// - [`succeeded_answers(Option<Vec::<SucceededTopicReviewedAnswer>>)`](crate::operation::batch_delete_topic_reviewed_answer::BatchDeleteTopicReviewedAnswerOutput::succeeded_answers): <p>The definition of Answers that are successfully deleted.</p>
13 /// - [`invalid_answers(Option<Vec::<InvalidTopicReviewedAnswer>>)`](crate::operation::batch_delete_topic_reviewed_answer::BatchDeleteTopicReviewedAnswerOutput::invalid_answers): <p>The definition of Answers that are invalid and not deleted.</p>
14 /// - [`request_id(Option<String>)`](crate::operation::batch_delete_topic_reviewed_answer::BatchDeleteTopicReviewedAnswerOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
15 /// - [`status(i32)`](crate::operation::batch_delete_topic_reviewed_answer::BatchDeleteTopicReviewedAnswerOutput::status): <p>The HTTP status of the request.</p>
16 /// - On failure, responds with [`SdkError<BatchDeleteTopicReviewedAnswerError>`](crate::operation::batch_delete_topic_reviewed_answer::BatchDeleteTopicReviewedAnswerError)
17 pub fn batch_delete_topic_reviewed_answer(
18 &self,
19 ) -> crate::operation::batch_delete_topic_reviewed_answer::builders::BatchDeleteTopicReviewedAnswerFluentBuilder {
20 crate::operation::batch_delete_topic_reviewed_answer::builders::BatchDeleteTopicReviewedAnswerFluentBuilder::new(self.handle.clone())
21 }
22}