Struct aws_sdk_storagegateway::input::UpdateSnapshotScheduleInput [−][src]
#[non_exhaustive]pub struct UpdateSnapshotScheduleInput {
pub volume_arn: Option<String>,
pub start_at: Option<i32>,
pub recurrence_in_hours: Option<i32>,
pub description: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
A JSON object containing one or more of the following fields:
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.volume_arn: Option<String>
The Amazon Resource Name (ARN) of the volume. Use the ListVolumes operation to return a list of gateway volumes.
start_at: Option<i32>
The hour of the day at which the snapshot schedule begins represented as hh, where hh is the hour (0 to 23). The hour of the day is in the time zone of the gateway.
recurrence_in_hours: Option<i32>
Frequency of snapshots. Specify the number of hours between snapshots.
description: Option<String>
Optional description of the snapshot that overwrites the existing description.
A list of up to 50 tags that can be assigned to a snapshot. Each tag is a key-value pair.
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateSnapshotSchedule, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateSnapshotSchedule, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateSnapshotSchedule
>
Creates a new builder-style object to manufacture UpdateSnapshotScheduleInput
The Amazon Resource Name (ARN) of the volume. Use the ListVolumes operation to return a list of gateway volumes.
The hour of the day at which the snapshot schedule begins represented as hh, where hh is the hour (0 to 23). The hour of the day is in the time zone of the gateway.
Frequency of snapshots. Specify the number of hours between snapshots.
Optional description of the snapshot that overwrites the existing description.
A list of up to 50 tags that can be assigned to a snapshot. Each tag is a key-value pair.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateSnapshotScheduleInput
impl Send for UpdateSnapshotScheduleInput
impl Sync for UpdateSnapshotScheduleInput
impl Unpin for UpdateSnapshotScheduleInput
impl UnwindSafe for UpdateSnapshotScheduleInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more