aws_sdk_quicksight/client/
update_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 [`UpdateRefreshSchedule`](crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`data_set_id(impl Into<String>)`](crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder::data_set_id) / [`set_data_set_id(Option<String>)`](crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder::set_data_set_id):<br>required: **true**<br><p>The ID of the dataset.</p><br>
7    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The Amazon Web Services account ID.</p><br>
8    ///   - [`schedule(RefreshSchedule)`](crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder::schedule) / [`set_schedule(Option<RefreshSchedule>)`](crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder::set_schedule):<br>required: **true**<br><p>The refresh schedule.</p><br>
9    /// - On success, responds with [`UpdateRefreshScheduleOutput`](crate::operation::update_refresh_schedule::UpdateRefreshScheduleOutput) with field(s):
10    ///   - [`status(i32)`](crate::operation::update_refresh_schedule::UpdateRefreshScheduleOutput::status): <p>The HTTP status of the request.</p>
11    ///   - [`request_id(Option<String>)`](crate::operation::update_refresh_schedule::UpdateRefreshScheduleOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
12    ///   - [`schedule_id(Option<String>)`](crate::operation::update_refresh_schedule::UpdateRefreshScheduleOutput::schedule_id): <p>The ID of the refresh schedule.</p>
13    ///   - [`arn(Option<String>)`](crate::operation::update_refresh_schedule::UpdateRefreshScheduleOutput::arn): <p>The Amazon Resource Name (ARN) for the refresh schedule.</p>
14    /// - On failure, responds with [`SdkError<UpdateRefreshScheduleError>`](crate::operation::update_refresh_schedule::UpdateRefreshScheduleError)
15    pub fn update_refresh_schedule(&self) -> crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder {
16        crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder::new(self.handle.clone())
17    }
18}