aws_sdk_quicksight/client/
list_topic_reviewed_answers.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 [`ListTopicReviewedAnswers`](crate::operation::list_topic_reviewed_answers::builders::ListTopicReviewedAnswersFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::list_topic_reviewed_answers::builders::ListTopicReviewedAnswersFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::list_topic_reviewed_answers::builders::ListTopicReviewedAnswersFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that containd the reviewed answers that you want listed.</p><br>
7    ///   - [`topic_id(impl Into<String>)`](crate::operation::list_topic_reviewed_answers::builders::ListTopicReviewedAnswersFluentBuilder::topic_id) / [`set_topic_id(Option<String>)`](crate::operation::list_topic_reviewed_answers::builders::ListTopicReviewedAnswersFluentBuilder::set_topic_id):<br>required: **true**<br><p>The ID for the topic that contains the reviewed answer that you want to list. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p><br>
8    /// - On success, responds with [`ListTopicReviewedAnswersOutput`](crate::operation::list_topic_reviewed_answers::ListTopicReviewedAnswersOutput) with field(s):
9    ///   - [`topic_id(Option<String>)`](crate::operation::list_topic_reviewed_answers::ListTopicReviewedAnswersOutput::topic_id): <p>The ID for the topic that contains the reviewed answer that you want to list. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
10    ///   - [`topic_arn(Option<String>)`](crate::operation::list_topic_reviewed_answers::ListTopicReviewedAnswersOutput::topic_arn): <p>The Amazon Resource Name (ARN) of the topic.</p>
11    ///   - [`answers(Option<Vec::<TopicReviewedAnswer>>)`](crate::operation::list_topic_reviewed_answers::ListTopicReviewedAnswersOutput::answers): <p>The definition of all Answers in the topic.</p>
12    ///   - [`status(i32)`](crate::operation::list_topic_reviewed_answers::ListTopicReviewedAnswersOutput::status): <p>The HTTP status of the request.</p>
13    ///   - [`request_id(Option<String>)`](crate::operation::list_topic_reviewed_answers::ListTopicReviewedAnswersOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
14    /// - On failure, responds with [`SdkError<ListTopicReviewedAnswersError>`](crate::operation::list_topic_reviewed_answers::ListTopicReviewedAnswersError)
15    pub fn list_topic_reviewed_answers(&self) -> crate::operation::list_topic_reviewed_answers::builders::ListTopicReviewedAnswersFluentBuilder {
16        crate::operation::list_topic_reviewed_answers::builders::ListTopicReviewedAnswersFluentBuilder::new(self.handle.clone())
17    }
18}