aws_sdk_quicksight/client/
describe_topic_refresh.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 [`DescribeTopicRefresh`](crate::operation::describe_topic_refresh::builders::DescribeTopicRefreshFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::describe_topic_refresh::builders::DescribeTopicRefreshFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::describe_topic_refresh::builders::DescribeTopicRefreshFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the topic whose refresh you want to describe.</p><br>
7    ///   - [`topic_id(impl Into<String>)`](crate::operation::describe_topic_refresh::builders::DescribeTopicRefreshFluentBuilder::topic_id) / [`set_topic_id(Option<String>)`](crate::operation::describe_topic_refresh::builders::DescribeTopicRefreshFluentBuilder::set_topic_id):<br>required: **true**<br><p>The ID of 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    ///   - [`refresh_id(impl Into<String>)`](crate::operation::describe_topic_refresh::builders::DescribeTopicRefreshFluentBuilder::refresh_id) / [`set_refresh_id(Option<String>)`](crate::operation::describe_topic_refresh::builders::DescribeTopicRefreshFluentBuilder::set_refresh_id):<br>required: **true**<br><p>The ID of the refresh, which is performed when the topic is created or updated.</p><br>
9    /// - On success, responds with [`DescribeTopicRefreshOutput`](crate::operation::describe_topic_refresh::DescribeTopicRefreshOutput) with field(s):
10    ///   - [`refresh_details(Option<TopicRefreshDetails>)`](crate::operation::describe_topic_refresh::DescribeTopicRefreshOutput::refresh_details): <p>Details of the refresh, which is performed when the topic is created or updated.</p>
11    ///   - [`request_id(Option<String>)`](crate::operation::describe_topic_refresh::DescribeTopicRefreshOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
12    ///   - [`status(i32)`](crate::operation::describe_topic_refresh::DescribeTopicRefreshOutput::status): <p>The HTTP status of the request.</p>
13    /// - On failure, responds with [`SdkError<DescribeTopicRefreshError>`](crate::operation::describe_topic_refresh::DescribeTopicRefreshError)
14    pub fn describe_topic_refresh(&self) -> crate::operation::describe_topic_refresh::builders::DescribeTopicRefreshFluentBuilder {
15        crate::operation::describe_topic_refresh::builders::DescribeTopicRefreshFluentBuilder::new(self.handle.clone())
16    }
17}