1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateRefreshSchedule`](crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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): <p>The ID of the dataset.</p>
    ///   - [`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): <p>The Amazon Web Services account ID.</p>
    ///   - [`schedule(RefreshSchedule)`](crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder::schedule) / [`set_schedule(Option<RefreshSchedule>)`](crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder::set_schedule): <p>The refresh schedule.</p>
    /// - On success, responds with [`UpdateRefreshScheduleOutput`](crate::operation::update_refresh_schedule::UpdateRefreshScheduleOutput) with field(s):
    ///   - [`status(i32)`](crate::operation::update_refresh_schedule::UpdateRefreshScheduleOutput::status): <p>The HTTP status of the request.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::update_refresh_schedule::UpdateRefreshScheduleOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    ///   - [`schedule_id(Option<String>)`](crate::operation::update_refresh_schedule::UpdateRefreshScheduleOutput::schedule_id): <p>The ID of the refresh schedule.</p>
    ///   - [`arn(Option<String>)`](crate::operation::update_refresh_schedule::UpdateRefreshScheduleOutput::arn): <p>The Amazon Resource Name (ARN) for the refresh schedule.</p>
    /// - On failure, responds with [`SdkError<UpdateRefreshScheduleError>`](crate::operation::update_refresh_schedule::UpdateRefreshScheduleError)
    pub fn update_refresh_schedule(
        &self,
    ) -> crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder
    {
        crate::operation::update_refresh_schedule::builders::UpdateRefreshScheduleFluentBuilder::new(
            self.handle.clone(),
        )
    }
}