// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateTopicRefreshSchedule`](crate::operation::update_topic_refresh_schedule::builders::UpdateTopicRefreshScheduleFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`aws_account_id(impl Into<String>)`](crate::operation::update_topic_refresh_schedule::builders::UpdateTopicRefreshScheduleFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_topic_refresh_schedule::builders::UpdateTopicRefreshScheduleFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the topic whose refresh schedule you want to update.</p><br>
/// - [`topic_id(impl Into<String>)`](crate::operation::update_topic_refresh_schedule::builders::UpdateTopicRefreshScheduleFluentBuilder::topic_id) / [`set_topic_id(Option<String>)`](crate::operation::update_topic_refresh_schedule::builders::UpdateTopicRefreshScheduleFluentBuilder::set_topic_id):<br>required: **true**<br><p>The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p><br>
/// - [`dataset_id(impl Into<String>)`](crate::operation::update_topic_refresh_schedule::builders::UpdateTopicRefreshScheduleFluentBuilder::dataset_id) / [`set_dataset_id(Option<String>)`](crate::operation::update_topic_refresh_schedule::builders::UpdateTopicRefreshScheduleFluentBuilder::set_dataset_id):<br>required: **true**<br><p>The ID of the dataset.</p><br>
/// - [`refresh_schedule(TopicRefreshSchedule)`](crate::operation::update_topic_refresh_schedule::builders::UpdateTopicRefreshScheduleFluentBuilder::refresh_schedule) / [`set_refresh_schedule(Option<TopicRefreshSchedule>)`](crate::operation::update_topic_refresh_schedule::builders::UpdateTopicRefreshScheduleFluentBuilder::set_refresh_schedule):<br>required: **true**<br><p>The definition of a refresh schedule.</p><br>
/// - On success, responds with [`UpdateTopicRefreshScheduleOutput`](crate::operation::update_topic_refresh_schedule::UpdateTopicRefreshScheduleOutput) with field(s):
/// - [`topic_id(Option<String>)`](crate::operation::update_topic_refresh_schedule::UpdateTopicRefreshScheduleOutput::topic_id): <p>The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
/// - [`topic_arn(Option<String>)`](crate::operation::update_topic_refresh_schedule::UpdateTopicRefreshScheduleOutput::topic_arn): <p>The Amazon Resource Name (ARN) of the topic.</p>
/// - [`dataset_arn(Option<String>)`](crate::operation::update_topic_refresh_schedule::UpdateTopicRefreshScheduleOutput::dataset_arn): <p>The Amazon Resource Name (ARN) of the dataset.</p>
/// - [`status(i32)`](crate::operation::update_topic_refresh_schedule::UpdateTopicRefreshScheduleOutput::status): <p>The HTTP status of the request.</p>
/// - [`request_id(Option<String>)`](crate::operation::update_topic_refresh_schedule::UpdateTopicRefreshScheduleOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
/// - On failure, responds with [`SdkError<UpdateTopicRefreshScheduleError>`](crate::operation::update_topic_refresh_schedule::UpdateTopicRefreshScheduleError)
pub fn update_topic_refresh_schedule(
&self,
) -> crate::operation::update_topic_refresh_schedule::builders::UpdateTopicRefreshScheduleFluentBuilder {
crate::operation::update_topic_refresh_schedule::builders::UpdateTopicRefreshScheduleFluentBuilder::new(self.handle.clone())
}
}