aws_sdk_storagegateway/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    ///   - [`volume_arn(impl Into<String>)`](crate::operation::delete_snapshot_schedule::builders::DeleteSnapshotScheduleFluentBuilder::volume_arn) / [`set_volume_arn(Option<String>)`](crate::operation::delete_snapshot_schedule::builders::DeleteSnapshotScheduleFluentBuilder::set_volume_arn):<br>required: **true**<br><p>The volume which snapshot schedule to delete.</p><br>
7    /// - On success, responds with [`DeleteSnapshotScheduleOutput`](crate::operation::delete_snapshot_schedule::DeleteSnapshotScheduleOutput) with field(s):
8    ///   - [`volume_arn(Option<String>)`](crate::operation::delete_snapshot_schedule::DeleteSnapshotScheduleOutput::volume_arn): <p>The volume which snapshot schedule was deleted.</p>
9    /// - On failure, responds with [`SdkError<DeleteSnapshotScheduleError>`](crate::operation::delete_snapshot_schedule::DeleteSnapshotScheduleError)
10    pub fn delete_snapshot_schedule(&self) -> crate::operation::delete_snapshot_schedule::builders::DeleteSnapshotScheduleFluentBuilder {
11        crate::operation::delete_snapshot_schedule::builders::DeleteSnapshotScheduleFluentBuilder::new(self.handle.clone())
12    }
13}