1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListTopicReviewedAnswers`](crate::operation::list_topic_reviewed_answers::builders::ListTopicReviewedAnswersFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`ListTopicReviewedAnswersOutput`](crate::operation::list_topic_reviewed_answers::ListTopicReviewedAnswersOutput) with field(s):
    ///   - [`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>
    ///   - [`topic_arn(Option<String>)`](crate::operation::list_topic_reviewed_answers::ListTopicReviewedAnswersOutput::topic_arn): <p>The Amazon Resource Name (ARN) of the topic.</p>
    ///   - [`answers(Option<Vec::<TopicReviewedAnswer>>)`](crate::operation::list_topic_reviewed_answers::ListTopicReviewedAnswersOutput::answers): <p>The definition of all Answers in the topic.</p>
    ///   - [`status(i32)`](crate::operation::list_topic_reviewed_answers::ListTopicReviewedAnswersOutput::status): <p>The HTTP status of the request.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::list_topic_reviewed_answers::ListTopicReviewedAnswersOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    /// - On failure, responds with [`SdkError<ListTopicReviewedAnswersError>`](crate::operation::list_topic_reviewed_answers::ListTopicReviewedAnswersError)
    pub fn list_topic_reviewed_answers(&self) -> crate::operation::list_topic_reviewed_answers::builders::ListTopicReviewedAnswersFluentBuilder {
        crate::operation::list_topic_reviewed_answers::builders::ListTopicReviewedAnswersFluentBuilder::new(self.handle.clone())
    }
}