aws_sdk_quicksight/client/
describe_topic_refresh_schedule.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 [`DescribeTopicRefreshSchedule`](crate::operation::describe_topic_refresh_schedule::builders::DescribeTopicRefreshScheduleFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::describe_topic_refresh_schedule::builders::DescribeTopicRefreshScheduleFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::describe_topic_refresh_schedule::builders::DescribeTopicRefreshScheduleFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The Amazon Web Services account ID.</p><br>
7    ///   - [`topic_id(impl Into<String>)`](crate::operation::describe_topic_refresh_schedule::builders::DescribeTopicRefreshScheduleFluentBuilder::topic_id) / [`set_topic_id(Option<String>)`](crate::operation::describe_topic_refresh_schedule::builders::DescribeTopicRefreshScheduleFluentBuilder::set_topic_id):<br>required: **true**<br><p>The ID of the topic that contains the refresh schedule that you want to describe. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p><br>
8    ///   - [`dataset_id(impl Into<String>)`](crate::operation::describe_topic_refresh_schedule::builders::DescribeTopicRefreshScheduleFluentBuilder::dataset_id) / [`set_dataset_id(Option<String>)`](crate::operation::describe_topic_refresh_schedule::builders::DescribeTopicRefreshScheduleFluentBuilder::set_dataset_id):<br>required: **true**<br><p>The ID of the dataset.</p><br>
9    /// - On success, responds with [`DescribeTopicRefreshScheduleOutput`](crate::operation::describe_topic_refresh_schedule::DescribeTopicRefreshScheduleOutput) with field(s):
10    ///   - [`topic_id(Option<String>)`](crate::operation::describe_topic_refresh_schedule::DescribeTopicRefreshScheduleOutput::topic_id): <p>The ID of the topic that contains the refresh schedule that you want to describe. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
11    ///   - [`topic_arn(Option<String>)`](crate::operation::describe_topic_refresh_schedule::DescribeTopicRefreshScheduleOutput::topic_arn): <p>The Amazon Resource Name (ARN) of the topic.</p>
12    ///   - [`dataset_arn(Option<String>)`](crate::operation::describe_topic_refresh_schedule::DescribeTopicRefreshScheduleOutput::dataset_arn): <p>The Amazon Resource Name (ARN) of the dataset.</p>
13    ///   - [`refresh_schedule(Option<TopicRefreshSchedule>)`](crate::operation::describe_topic_refresh_schedule::DescribeTopicRefreshScheduleOutput::refresh_schedule): <p>The definition of a refresh schedule.</p>
14    ///   - [`status(i32)`](crate::operation::describe_topic_refresh_schedule::DescribeTopicRefreshScheduleOutput::status): <p>The HTTP status of the request.</p>
15    ///   - [`request_id(Option<String>)`](crate::operation::describe_topic_refresh_schedule::DescribeTopicRefreshScheduleOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
16    /// - On failure, responds with [`SdkError<DescribeTopicRefreshScheduleError>`](crate::operation::describe_topic_refresh_schedule::DescribeTopicRefreshScheduleError)
17    pub fn describe_topic_refresh_schedule(
18        &self,
19    ) -> crate::operation::describe_topic_refresh_schedule::builders::DescribeTopicRefreshScheduleFluentBuilder {
20        crate::operation::describe_topic_refresh_schedule::builders::DescribeTopicRefreshScheduleFluentBuilder::new(self.handle.clone())
21    }
22}