aws_sdk_quicksight/client/
list_topic_refresh_schedules.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 [`ListTopicRefreshSchedules`](crate::operation::list_topic_refresh_schedules::builders::ListTopicRefreshSchedulesFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::list_topic_refresh_schedules::builders::ListTopicRefreshSchedulesFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::list_topic_refresh_schedules::builders::ListTopicRefreshSchedulesFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the topic whose refresh schedule you want described.</p><br>
7    ///   - [`topic_id(impl Into<String>)`](crate::operation::list_topic_refresh_schedules::builders::ListTopicRefreshSchedulesFluentBuilder::topic_id) / [`set_topic_id(Option<String>)`](crate::operation::list_topic_refresh_schedules::builders::ListTopicRefreshSchedulesFluentBuilder::set_topic_id):<br>required: **true**<br><p>The ID for the topic that you want to describe. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p><br>
8    /// - On success, responds with [`ListTopicRefreshSchedulesOutput`](crate::operation::list_topic_refresh_schedules::ListTopicRefreshSchedulesOutput) with field(s):
9    ///   - [`topic_id(Option<String>)`](crate::operation::list_topic_refresh_schedules::ListTopicRefreshSchedulesOutput::topic_id): <p>The ID for the topic that you want to describe. 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_refresh_schedules::ListTopicRefreshSchedulesOutput::topic_arn): <p>The Amazon Resource Name (ARN) of the topic.</p>
11    ///   - [`refresh_schedules(Option<Vec::<TopicRefreshScheduleSummary>>)`](crate::operation::list_topic_refresh_schedules::ListTopicRefreshSchedulesOutput::refresh_schedules): <p>The list of topic refresh schedules.</p>
12    ///   - [`status(i32)`](crate::operation::list_topic_refresh_schedules::ListTopicRefreshSchedulesOutput::status): <p>The HTTP status of the request.</p>
13    ///   - [`request_id(Option<String>)`](crate::operation::list_topic_refresh_schedules::ListTopicRefreshSchedulesOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
14    /// - On failure, responds with [`SdkError<ListTopicRefreshSchedulesError>`](crate::operation::list_topic_refresh_schedules::ListTopicRefreshSchedulesError)
15    pub fn list_topic_refresh_schedules(&self) -> crate::operation::list_topic_refresh_schedules::builders::ListTopicRefreshSchedulesFluentBuilder {
16        crate::operation::list_topic_refresh_schedules::builders::ListTopicRefreshSchedulesFluentBuilder::new(self.handle.clone())
17    }
18}