// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ModifyClusterSnapshotSchedule`](crate::operation::modify_cluster_snapshot_schedule::builders::ModifyClusterSnapshotScheduleFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`cluster_identifier(impl Into<String>)`](crate::operation::modify_cluster_snapshot_schedule::builders::ModifyClusterSnapshotScheduleFluentBuilder::cluster_identifier) / [`set_cluster_identifier(Option<String>)`](crate::operation::modify_cluster_snapshot_schedule::builders::ModifyClusterSnapshotScheduleFluentBuilder::set_cluster_identifier): <p>A unique identifier for the cluster whose snapshot schedule you want to modify. </p>
/// - [`schedule_identifier(impl Into<String>)`](crate::operation::modify_cluster_snapshot_schedule::builders::ModifyClusterSnapshotScheduleFluentBuilder::schedule_identifier) / [`set_schedule_identifier(Option<String>)`](crate::operation::modify_cluster_snapshot_schedule::builders::ModifyClusterSnapshotScheduleFluentBuilder::set_schedule_identifier): <p>A unique alphanumeric identifier for the schedule that you want to associate with the cluster.</p>
/// - [`disassociate_schedule(bool)`](crate::operation::modify_cluster_snapshot_schedule::builders::ModifyClusterSnapshotScheduleFluentBuilder::disassociate_schedule) / [`set_disassociate_schedule(Option<bool>)`](crate::operation::modify_cluster_snapshot_schedule::builders::ModifyClusterSnapshotScheduleFluentBuilder::set_disassociate_schedule): <p>A boolean to indicate whether to remove the assoiciation between the cluster and the schedule.</p>
/// - On success, responds with [`ModifyClusterSnapshotScheduleOutput`](crate::operation::modify_cluster_snapshot_schedule::ModifyClusterSnapshotScheduleOutput)
/// - On failure, responds with [`SdkError<ModifyClusterSnapshotScheduleError>`](crate::operation::modify_cluster_snapshot_schedule::ModifyClusterSnapshotScheduleError)
pub fn modify_cluster_snapshot_schedule(
&self,
) -> crate::operation::modify_cluster_snapshot_schedule::builders::ModifyClusterSnapshotScheduleFluentBuilder {
crate::operation::modify_cluster_snapshot_schedule::builders::ModifyClusterSnapshotScheduleFluentBuilder::new(self.handle.clone())
}
}