Struct rusoto_storagegateway::UpdateSnapshotScheduleInput[][src]

pub struct UpdateSnapshotScheduleInput {
    pub description: Option<String>,
    pub recurrence_in_hours: i64,
    pub start_at: i64,
    pub volume_arn: String,
}

Fields

Optional description of the snapshot that overwrites the existing description.

Frequency of snapshots. Specify the number of hours between snapshots.

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.

The Amazon Resource Name (ARN) of the volume. Use the ListVolumes operation to return a list of gateway volumes.

Trait Implementations

impl Default for UpdateSnapshotScheduleInput
[src]

Returns the "default value" for a type. Read more

impl Debug for UpdateSnapshotScheduleInput
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateSnapshotScheduleInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateSnapshotScheduleInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations