aws_sdk_quicksight/client/
describe_data_set_refresh_properties.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 [`DescribeDataSetRefreshProperties`](crate::operation::describe_data_set_refresh_properties::builders::DescribeDataSetRefreshPropertiesFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::describe_data_set_refresh_properties::builders::DescribeDataSetRefreshPropertiesFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::describe_data_set_refresh_properties::builders::DescribeDataSetRefreshPropertiesFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The Amazon Web Services account ID.</p><br>
7    ///   - [`data_set_id(impl Into<String>)`](crate::operation::describe_data_set_refresh_properties::builders::DescribeDataSetRefreshPropertiesFluentBuilder::data_set_id) / [`set_data_set_id(Option<String>)`](crate::operation::describe_data_set_refresh_properties::builders::DescribeDataSetRefreshPropertiesFluentBuilder::set_data_set_id):<br>required: **true**<br><p>The ID of the dataset.</p><br>
8    /// - On success, responds with [`DescribeDataSetRefreshPropertiesOutput`](crate::operation::describe_data_set_refresh_properties::DescribeDataSetRefreshPropertiesOutput) with field(s):
9    ///   - [`request_id(Option<String>)`](crate::operation::describe_data_set_refresh_properties::DescribeDataSetRefreshPropertiesOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
10    ///   - [`status(i32)`](crate::operation::describe_data_set_refresh_properties::DescribeDataSetRefreshPropertiesOutput::status): <p>The HTTP status of the request.</p>
11    ///   - [`data_set_refresh_properties(Option<DataSetRefreshProperties>)`](crate::operation::describe_data_set_refresh_properties::DescribeDataSetRefreshPropertiesOutput::data_set_refresh_properties): <p>The dataset refresh properties.</p>
12    /// - On failure, responds with [`SdkError<DescribeDataSetRefreshPropertiesError>`](crate::operation::describe_data_set_refresh_properties::DescribeDataSetRefreshPropertiesError)
13    pub fn describe_data_set_refresh_properties(
14        &self,
15    ) -> crate::operation::describe_data_set_refresh_properties::builders::DescribeDataSetRefreshPropertiesFluentBuilder {
16        crate::operation::describe_data_set_refresh_properties::builders::DescribeDataSetRefreshPropertiesFluentBuilder::new(self.handle.clone())
17    }
18}