aws_sdk_redshift/client/
delete_snapshot_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 [`DeleteSnapshotSchedule`](crate::operation::delete_snapshot_schedule::builders::DeleteSnapshotScheduleFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`schedule_identifier(impl 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):<br>required: **true**<br><p>A unique identifier of the snapshot schedule to delete.</p><br>
7    /// - On success, responds with [`DeleteSnapshotScheduleOutput`](crate::operation::delete_snapshot_schedule::DeleteSnapshotScheduleOutput)
8    /// - On failure, responds with [`SdkError<DeleteSnapshotScheduleError>`](crate::operation::delete_snapshot_schedule::DeleteSnapshotScheduleError)
9    pub fn delete_snapshot_schedule(&self) -> crate::operation::delete_snapshot_schedule::builders::DeleteSnapshotScheduleFluentBuilder {
10        crate::operation::delete_snapshot_schedule::builders::DeleteSnapshotScheduleFluentBuilder::new(self.handle.clone())
11    }
12}