1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteSnapshotSchedule`](crate::operation::delete_snapshot_schedule::builders::DeleteSnapshotScheduleFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`schedule_identifier(impl ::std::convert::Into<String>)`](crate::operation::delete_snapshot_schedule::builders::DeleteSnapshotScheduleFluentBuilder::schedule_identifier) / [`set_schedule_identifier(Option<String>)`](crate::operation::delete_snapshot_schedule::builders::DeleteSnapshotScheduleFluentBuilder::set_schedule_identifier): <p>A unique identifier of the snapshot schedule to delete.</p>
    /// - On success, responds with [`DeleteSnapshotScheduleOutput`](crate::operation::delete_snapshot_schedule::DeleteSnapshotScheduleOutput)
    /// - On failure, responds with [`SdkError<DeleteSnapshotScheduleError>`](crate::operation::delete_snapshot_schedule::DeleteSnapshotScheduleError)
    pub fn delete_snapshot_schedule(
        &self,
    ) -> crate::operation::delete_snapshot_schedule::builders::DeleteSnapshotScheduleFluentBuilder
    {
        crate::operation::delete_snapshot_schedule::builders::DeleteSnapshotScheduleFluentBuilder::new(self.handle.clone())
    }
}