// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateSnapshotSchedule`](crate::operation::update_snapshot_schedule::builders::UpdateSnapshotScheduleFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`volume_arn(impl Into<String>)`](crate::operation::update_snapshot_schedule::builders::UpdateSnapshotScheduleFluentBuilder::volume_arn) / [`set_volume_arn(Option<String>)`](crate::operation::update_snapshot_schedule::builders::UpdateSnapshotScheduleFluentBuilder::set_volume_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the volume. Use the <code>ListVolumes</code> operation to return a list of gateway volumes.</p><br>
/// - [`start_at(i32)`](crate::operation::update_snapshot_schedule::builders::UpdateSnapshotScheduleFluentBuilder::start_at) / [`set_start_at(Option<i32>)`](crate::operation::update_snapshot_schedule::builders::UpdateSnapshotScheduleFluentBuilder::set_start_at):<br>required: **true**<br><p>The hour of the day at which the snapshot schedule begins represented as <i>hh</i>, where <i>hh</i> is the hour (0 to 23). The hour of the day is in the time zone of the gateway.</p><br>
/// - [`recurrence_in_hours(i32)`](crate::operation::update_snapshot_schedule::builders::UpdateSnapshotScheduleFluentBuilder::recurrence_in_hours) / [`set_recurrence_in_hours(Option<i32>)`](crate::operation::update_snapshot_schedule::builders::UpdateSnapshotScheduleFluentBuilder::set_recurrence_in_hours):<br>required: **true**<br><p>Frequency of snapshots. Specify the number of hours between snapshots.</p><br>
/// - [`description(impl Into<String>)`](crate::operation::update_snapshot_schedule::builders::UpdateSnapshotScheduleFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_snapshot_schedule::builders::UpdateSnapshotScheduleFluentBuilder::set_description):<br>required: **false**<br><p>Optional description of the snapshot that overwrites the existing description.</p><br>
/// - [`tags(Tag)`](crate::operation::update_snapshot_schedule::builders::UpdateSnapshotScheduleFluentBuilder::tags) / [`set_tags(Option<Vec::<Tag>>)`](crate::operation::update_snapshot_schedule::builders::UpdateSnapshotScheduleFluentBuilder::set_tags):<br>required: **false**<br><p>A list of up to 50 tags that can be assigned to a snapshot. Each tag is a key-value pair.</p><note> <p>Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, and the maximum length for a tag's value is 256.</p> </note><br>
/// - On success, responds with [`UpdateSnapshotScheduleOutput`](crate::operation::update_snapshot_schedule::UpdateSnapshotScheduleOutput) with field(s):
/// - [`volume_arn(Option<String>)`](crate::operation::update_snapshot_schedule::UpdateSnapshotScheduleOutput::volume_arn): <p>The Amazon Resource Name (ARN) of the volume. Use the <code>ListVolumes</code> operation to return a list of gateway volumes.</p>
/// - On failure, responds with [`SdkError<UpdateSnapshotScheduleError>`](crate::operation::update_snapshot_schedule::UpdateSnapshotScheduleError)
pub fn update_snapshot_schedule(&self) -> crate::operation::update_snapshot_schedule::builders::UpdateSnapshotScheduleFluentBuilder {
crate::operation::update_snapshot_schedule::builders::UpdateSnapshotScheduleFluentBuilder::new(self.handle.clone())
}
}